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

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: #0a0a1a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #0a0a1a;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.btn-primary {
    background-color: #7c6fd6;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #6a5fc4;
}

.btn-secondary {
    background-color: #7c6fd6;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #6a5fc4;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: url('./images/hero.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 800px;
    opacity: 0.9;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.stat-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Transforming Section */
.transforming {
    padding: 80px 0;
    background-color: #0a0a1a;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.transforming-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.transforming-text {
    flex: 1;
}

.transforming-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.transforming-image {
    flex: 1;
}

.transforming-image img {
    width: 100%;
    border-radius: 30px;
}

.mission-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #0a0a1a;
}

.features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    border-radius: 12px;
    padding: 40px 30px;
}

.feature-card.purple {
    background-color: #8b7fd6;
}

.feature-card.yellow {
    background-color: #d4a537;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.95;
}

/* Sets Apart Section */
.sets-apart {
    padding: 80px 0;
    background-color: #0a0a1a;
}

.sets-apart-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.sets-apart-text {
    flex: 1;
}

.sets-apart-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.sets-apart-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.9;
}

.sets-apart-image {
    flex: 1;
}

.sets-apart-image img {
    width: 100%;
    border-radius: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #0a0a1a;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    border-radius: 12px;
    padding: 40px 30px;
}

.service-card.yellow {
    background-color: #d4a537;
}

.service-card.purple {
    background-color: #8b7fd6;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #0a0a1a;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.9;
}

.contact-details {
    margin-top: 32px;
}

.contact-details p {
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-details strong {
    font-weight: 600;
}

.contact-form {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7c6fd6;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    background-color: #7c6fd6;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #6a5fc4;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #0a0a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

.footer-copyright {
    font-size: 12px;
    opacity: 0.6;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-decline {
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #7c6fd6;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6a5fc4;
}

.btn-decline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 14px;
    }

    .stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: 100%;
    }

    .transforming-content {
        flex-direction: column;
        gap: 30px;
    }

    .mission-cards {
        flex-direction: column;
    }

    .features {
        flex-direction: column;
    }

    .feature-card {
        min-width: 100%;
    }

    .sets-apart-content {
        flex-direction: column;
        gap: 30px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .sets-apart-text h2 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .stat-card h3 {
        font-size: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .sets-apart-text h2 {
        font-size: 24px;
    }

    .feature-card,
    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}