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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4F8EF7;
}

.contact-btn {
    background: transparent;
    border: 2px solid #333;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: #333;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* About Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* About Features Section */
.about-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* What You'll Find Section */
.what-youll-find {
    padding: 80px 0;
    background: white;
    border-radius: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.section-image {
    margin-bottom: 3rem;
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.section-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Our Principles Section */
.principles {
    padding: 80px 0;
    background: #f8f9fa;
}

.principles h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #E5E9F2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.principle-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.principle-card p {
    color: #666;
    line-height: 1.6;
}

/* Vision Section */
.vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-label {
    color: #8FBC8F;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.vision-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.3;
}

.vision-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vision-text p:last-child {
    margin-bottom: 0;
}

.vision-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #2D3748;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-form {
    max-width: 400px;
    margin: 0 auto 3rem;
}

.contact-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: #4F8EF7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-form button:hover {
    background: #3D7CE3;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #1A202C;
    color: white;
    padding: 2rem 0;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7BB936;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 400px;
    z-index: 1001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    text-align: center;
}

.cookie-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cookie-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cookie-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accept-btn {
    background: white;
    color: #4F8EF7;
    border: 2px solid white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.accept-btn:hover {
    background: transparent;
    color: white;
}

.more-info-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Poppins', sans-serif;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .contact-btn {
        display: none;
    }
    
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h1 {
        font-size: 2.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .what-youll-find {
        margin: 0 10px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        order: 2;
    }
    
    .cookie-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .about-text h1 {
        font-size: 2rem;
    }
    
    .section-content h2,
    .principles h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .vision-text h2 {
        font-size: 1.8rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .about-hero,
    .about-features,
    .what-youll-find,
    .principles,
    .vision,
    .contact {
        padding: 60px 0;
    }
    
    .what-youll-find {
        padding: 60px 20px;
    }
}