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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

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

.site-logo a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
}

.site-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.site-nav a:hover {
    background-color: #e6f0ff;
    color: #0066cc;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 2rem;
        top: 70px;
        background: white;
        padding: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .site-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 90vh;
    position: relative;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.6);
    z-index: 1;
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
    flex: 1 1 45%;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f0f0f0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }
}

.hero-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.8rem;
    background-color: #00aaff;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hero-button:hover {
    background-color: #0077cc;
}

.about-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    color: #222;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-text .subtitle {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image {
    flex: 1 1 40%;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        flex: 1 1 100%;
        text-align: center;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

.whyus-section {
    background-color: #f8f9fb;
    padding: 5rem 2rem;
    color: #1a1a1a;
}

.whyus-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.whyus-text {
    flex: 1 1 55%;
}

.whyus-text h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #222;
}

.whyus-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.whyus-text ul {
    list-style: none;
    padding-left: 0;
}

.whyus-text ul li {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    background: #fff;
    padding: 1rem;
    border-left: 4px solid #00aaff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.whyus-image {
    flex: 1 1 40%;
    text-align: center;
}

.whyus-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .whyus-container {
        flex-direction: column;
    }

    .whyus-text,
    .whyus-image {
        flex: 1 1 100%;
        text-align: center;
    }

    .whyus-text ul li {
        text-align: left;
    }
}

.features-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.features-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.feature-item {
    background-color: #f4f6f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    font-size: 2.2rem;
    color: #00aaff;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #222;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}

.contact-section {
    padding: 5rem 2rem;
    background-color: #f2f4f8;
    color: #1a1a1a;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1 1 40%;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info .contact-subtitle {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-form {
    flex: 1 1 55%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    resize: none;
    transition: border-color 0.3s ease;
}

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

.contact-form button {
    background-color: #00aaff;
    color: white;
    padding: 0.9rem;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #0077cc;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        flex: 1 1 100%;
    }
}

.footer-alt {
    background-color: #111;
    color: #ccc;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-alt-container {
    max-width: 1000px;
    margin: auto;
}

.footer-alt-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00aaff;
    margin-bottom: 1rem;
}

.footer-alt-link {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-alt-link:hover {
    color: #00aaff;
}

.footer-alt-copy {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #777;
}

.privacy-section {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 5rem 2rem;
}

.privacy-container {
    max-width: 900px;
    margin: auto;
}

.privacy-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00aaff;
}

.privacy-container h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #222;
}

.privacy-container p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.privacy-container ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: disc;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-container h2 {
        font-size: 1.6rem;
    }

    .privacy-container h3 {
        font-size: 1.1rem;
    }
}

.thankyou-section {
    padding: 6rem 2rem;
    background-color: #f0f9ff;
    text-align: center;
}

.thankyou-container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.thankyou-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00aaff;
}

.thankyou-section p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
}

.thankyou-button {
    display: inline-block;
    background-color: #00aaff;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.thankyou-button:hover {
    background-color: #0077cc;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: auto;
    background: #ffffff;
    color: #333;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

#cookie-accept {
    background-color: #00aaff;
    color: white;
}

#cookie-accept:hover {
    background-color: #0077cc;
}

#cookie-decline {
    background-color: #ccc;
    color: #333;
}

#cookie-decline:hover {
    background-color: #999;
}