/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        
        body {
            font-family: 'Space Grotesk', Arial, sans-serif;
            line-height: 1.6;
            color: #2f433e;
            background-color: #ffffff;
			
			
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
		
        
        button {
            cursor: pointer;
            border: none;
            outline: none;
            transition: all 0.3s ease;
        }
        
        button:hover {
            transform: scale(1.05);
        }
        
        button:active {
            transform: scale(0.95);
        }
        
        /* Layout components */
        .main-container {
            width: 100%;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .hero-section {
            width: 100%;
            background-color: #ecdfcc;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        
        .content-wrapper {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        /* Header */
        .header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            border: 3px solid #657565;
            margin: 20px;
            background-color: #ecdfcc;
        }
        
        .nav-menu {
            display: none;
        }
        
        .hamburger {
            display: block;
            background: none;
            border: none;
            font-size: 24px;
            color: #657565;
            padding: 8px;
        }
        
        .logo {
            font-size: 18px;
            font-weight: 700;
            color: #657565;
            text-align: center;
            padding: 10px;
        }
        
        .nav-item {
            font-size: 14px;
            font-weight: 700;
            color: #657565;
            text-decoration: none;
            padding: 8px 12px;
            transition: all 0.3s ease;
        }
        
        .nav-item:hover {
            color: #2f433e;
            background-color: rgba(165, 179, 136, 0.2);
            border-radius: 4px;
        }
        
        /* Hero image */
        .hero-image {
            width: 100%;
            height: auto;
            margin-top: 20px;
        }
        
        /* Mission section */
        .mission-section {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 80px;
            padding: 0 24px;
            position: relative;
        }
        
        .mission-content {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 32px;
        }
        
        .mission-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }
        
        .mission-title {
            font-size: 32px;
            font-weight: 700;
            color: #657565;
            line-height: 1.3;
            margin-bottom: 16px;
        }
        
        .mission-text {
            font-size: 16px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            color: #2f433e;
            line-height: 1.2;
            margin-bottom: 24px;
        }
        
        .mission-logo {
            width: 120px;
            height: auto;
        }
        
        .mission-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            position: relative;
        }
        
        .ready-text {
            font-size: 40px;
            font-weight: 700;
            color: #657565;
            line-height: 1.3;
            text-align: center;
            margin-bottom: 8px;
        }
        
        .green-text {
            font-size: 48px;
            font-family: 'Explora', cursive;
            font-weight: 400;
            color: #657565;
            line-height: 1.2;
            text-align: center;
            margin-bottom: 24px;
        }
        
        .contact-btn {
            background-color: #a9b388;
            color: #ecdfcc;
            font-size: 16px;
            font-weight: 700;
            padding: 14px 28px;
            border: 3px solid #1e201e;
            border-radius: 30px;
            transition: all 0.3s ease;
			text-decoration: none;
        }
        
        .contact-btn:hover {
            background-color: #95a374;
            transform: scale(1.05);
			text-decoration: none;
        }
        
       .dustbin-image {
    display: block;
    align-self: center; /* Centers in flex container */
    margin-top: 300px; /* Adjust spacing */
    max-width: 450px;
}
        
        /* About section */
        .about-section {
            width: 100%;
            background-color: #697565;
            padding: 60px 24px;
            margin-top: 120px;
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .about-left {
            width: 100%;
        }
        
        .about-title {
            font-size: 40px;
            font-weight: 700;
            color: #ecdfcc;
            line-height: 1.3;
            text-align: center;
            margin-bottom: 16px;
        }
        
        .about-text {
            font-size: 16px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            color: #ecdfcc;
            line-height: 1.2;
            text-align: justify;
            margin-bottom: 32px;
        }
        
        .learn-btn {
            background-color: #a9b388;
            color: #ecdfcc;
            font-size: 16px;
            font-weight: 700;
            padding: 14px 28px;
            border: 3px solid #1e201e;
            border-radius: 30px;
            transition: all 0.3s ease;
            align-self: flex-start;
			text-decoration: none;
        }
        
        .learn-btn:hover {
           background-color: #95a374;
           transform: scale(1.05);
		   text-decoration: none;
        }
        
        .about-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        /* Services section */
        .services-section {
            width: 100%;
            background-color: #ecdfcc;
            padding: 40px 24px;
        }
        
        .services-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .service-card {
            background-color: #2f433e;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-4px);
        }
        
        .service-image {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .service-title {
            font-size: 18px;
            font-weight: 700;
            color: #ecdfcc;
            text-align: center;
            line-height: 1.3;
        }
        
        .service-text {
            font-size: 14px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            color: #ecdfcc;
            line-height: 1.2;
            text-align: justify;
        }
        
       .services-btn {
    background-color: #a9b388;
    color: #ecdfcc;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border: 3px solid #1e201e;
    border-radius: 30px;
    margin: 40px auto 0;
    display: inline-block; /* Changed from block */
    transition: all 0.3s ease;
    text-decoration: none; /* Good to add this */
}
        
        .services-btn:hover {
            background-color: #95a374;
            transform: scale(1.05);
			text-decoration: none;
        }
        
        /* Footer */
        .footer {
            width: 100%;
            background-color: #2f433e;
            padding: 32px 24px;
        }
        
        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .footer-top {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }
        
        .footer-logo {
            width: 140px;
            height: auto;
        }
        
        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: center;
        }
        
        .footer-title {
            font-size: 20px;
            font-weight: 700;
            color: #ecdfcc;
            margin-bottom: 8px;
        }
        
        .footer-link {
            font-size: 14px;
            font-family: 'Cormorant Garamond', serif;
            color: #ecdfcc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: #a9b388;
        }
        
        .social-icons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        
        .social-icon {
            width: 32px;
            height: 32px;
            transition: transform 0.3s ease;
        }
        
        .social-icon:hover {
            transform: scale(1.1);
        }
        
        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }
        
        .footer-description {
            font-size: 14px;
            font-family: 'Cormorant Garamond', serif;
            color: #ecdfcc;
            line-height: 1.2;
        }
        
        .footer-address {
            font-size: 14px;
            font-family: 'Cormorant Garamond', serif;
            color: #ecdfcc;
            line-height: 1.2;
        }
        
        .footer-copyright {
            font-size: 13px;
            font-weight: 700;
            color: #ecdfcc;
            text-align: center;
            margin-top: 16px;
        }
        
        /* Responsive media queries */
        @media (min-width: 640px) {
            .content-wrapper {
                padding: 0 24px;
            }
            
            .mission-title {
                font-size: 40px;
            }
            
            .ready-text {
                font-size: 48px;
            }
            
            .green-text {
                font-size: 56px;
            }
            
            .about-title {
                font-size: 48px;
            }
            
            .services-grid {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 32px;
            }
            
            .service-card {
                width: calc(50% - 16px);
            }
        }
        
        @media (min-width: 768px) {
            .content-wrapper {
                padding: 0 32px;
            }
            
            .header {
                padding: 12px 48px;
            }
            
            .nav-menu {
                display: flex;
                gap: 32px;
                align-items: center;
            }
            
            .hamburger {
                display: none;
            }
            
            .logo {
                font-size: 24px;
            }
            
            .nav-item {
                font-size: 18px;
                padding: 10px;
            }
            
            .mission-section {
                padding: 0 48px;
            }
            
            .mission-content {
                flex-direction: row;
                align-items: flex-start;
            }
            
            .mission-left {
                width: 60%;
                padding-right: 32px;
            }
            
            .mission-right {
                width: 40%;
                align-items: flex-end;
            }
            
            .mission-title {
                font-size: 48px;
            }
            
            .mission-text {
                font-size: 20px;
                width: 80%;
            }
            
            .ready-text {
                font-size: 56px;
                text-align: right;
            }
            
            .green-text {
                font-size: 72px;
                text-align: right;
            }
            
            .contact-btn {
                font-size: 21px;
                padding: 18px 34px;
            }
            
            .about-content {
                flex-direction: row;
                align-items: center;
            }
            
            .about-left {
                width: 50%;
                padding-right: 32px;
            }
            
            .about-title {
                font-size: 56px;
                text-align: left;
            }
            
            .about-text {
                font-size: 20px;
            }
            
            .learn-btn {
                font-size: 21px;
                padding: 18px 34px;
            }
            
            .about-image {
                width: 50%;
            }
            
            .services-grid {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .service-card {
                width: calc(33.333% - 16px);
            }
            
            .service-title {
                font-size: 20px;
            }
            
            .service-text {
                font-size: 18px;
            }
            
            .services-btn {
                font-size: 21px;
                padding: 18px 34px;
            }
            
            .footer-top {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
            
            .footer-nav {
                flex-direction: row;
                gap: 32px;
            }
            
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }
        
        @media (min-width: 1024px) {
            .content-wrapper {
                padding: 0 48px;
            }
            
            .header {
                padding: 12px 78px;
                margin: 20px;
            }
            
            .nav-menu {
                gap: 160px;
            }
            
            .dustbin-image {
                display: block;
                position: absolute;
                top: 50%;
                left: 55%;
                transform: translate(-50%, -50%);
                width: 500px;
                height: 400px;
                border-radius: 220px;
                z-index: 1;
            }
            
            .mission-section {
                margin-top: 126px;
                padding: 0 46px;
            }
            
            .mission-title {
                font-size: 48px;
            }
            
            .ready-text {
                font-size: 64px;
            }
            
            .green-text {
                font-size: 96px;
            }
            
            .about-section {
                padding: 90px 72px;
                margin-top: 186px;
            }
            
            .about-title {
                font-size: 64px;
            }
            
            .services-section {
                padding: 60px 70px;
            }
            
            .service-image {
                width: 250px;
                height: 246px;
            }
            
            .footer {
                padding: 26px;
            }
            
            .footer-title {
                font-size: 26px;
            }
            
            .footer-link {
                font-size: 18px;
            }
        }
        
        @media (min-width: 1280px) {
            .dustbin-image {
                width: 520px;
                height: 520px;
            }
        }


.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem;
  gap: 3rem;
  background-color: #584738; 
  min-height: 100vh;
}


.form-box {
  background-color: #A9B388;
  padding: 2rem;
  border-radius: 8px;
  width: 350px;
}

.form-box form {
  display: flex;
  flex-direction: column;
}

.form-box label {
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 0.3rem;
}

.form-box input,
.form-box textarea {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.form-box textarea {
  min-height: 80px;
  resize: vertical;
}

.form-box button {
  background-color: #2C2C2C;
  color: #fff;
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.form-box button:hover {
  opacity: 0.85;
}

.contact-text {
  max-width: 300px;
  color: #ddd;
}

.contact-text h2 {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.5;
}


.who-we-are {
  text-align: center;
  padding: 3rem 1rem;
}

.who-we-are h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  color: #657565;
  margin-bottom: 2rem;
}

.mission-vision {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.box {
  background-color: #CCC0A8;
  padding: 1.5rem;
  border-radius: 4px;
  max-width: 300px;
}

.box h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  color: #657565;
  margin-top: 1rem;
}


.liliana-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 1rem;
  flex-wrap: wrap;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.bio-text {
  max-width: 600px;
}

.why-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 1rem;
  flex-wrap: wrap;
}

.why-text {
  max-width: 600px;
}

.why-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: #657565;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-img {
  max-width: 300px;
  border-radius: 4px;
}

body.about-page {
  background-color: #ECDFCC;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    flex: 1;
    text-align: center;
}

.nav-left {
    flex: 1;
}

.nav-right {
    flex: 1;
    text-align: right;
}

.nav-menu {
    position: relative;
}

.nav-item.logo {
    position: absolute;
    left: -55%;
    transform: translateX(-50%);
	
}