/* Reset and Base Styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 2rem;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #007bff;
    color: white;
}

.cookie-btn.accept:hover {
    background: #0056b3;
}

.cookie-btn.decline {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
}

.cookie-btn.decline:hover {
    background: #e2e6ea;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

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

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

.nav-menu a:hover {
    color: #007bff;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3rem;
}

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #00d4aa;
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #00b894;
    transform: translateY(-0.2rem);
}

.hero-image {
    flex: 1;
    max-width: 50rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #fff;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    max-width: 50rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

/* Services Section */
.services {
    padding: 8rem 0;
    background: #f8f9ff;
}

.services h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.services-intro {
    font-size: 1.6rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: #fff;
}

.benefits h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits > .container > p {
    font-size: 1.6rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    background: #f8f9ff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-0.5rem);
}

.benefit-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    padding: 8rem 0;
    background: #f8f9ff;
}

.blog h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.blog > .container > p {
    font-size: 1.6rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-0.5rem);
}

.blog-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.blog-content {
    padding: 2.5rem;
}

.blog-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #fff;
}

.contact h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.contact > .container > p {
    font-size: 1.6rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;

    border-radius: 10px;
border: 1px solid #F4F5F6;
background: #FFF;
box-shadow: 0px 30px 40px 0px rgba(119, 126, 144, 0.10);

padding: 20px;


gap: 10px;
flex: 1 0 0;
}

.contact-item {
    text-align: center;

}

.contact-item strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 50rem;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

.submit-btn {
    background: #00d4aa;
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.submit-btn:hover {
    background: #00b894;
    transform: translateY(-0.2rem);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 1.4rem;
    color: #ccc;
}

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

.footer-column h4 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-column h4:hover {
    color: #00d4aa;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 1.2rem;
    color: #999;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .about-content {
        flex-direction: row;
    }

    .about-text {
        text-align: left;
    }

    .about-text h2 {
        text-align: left;
    }

    .about-text p {
        text-align: left;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        /*flex: 0 1 calc(50% - 1rem);*/
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 0 1 calc(50% - 1rem);
    }

    .blog-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .blog-card {
        flex: 0 1 calc(50% - 1.5rem);
    }

    .contact-content {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
        text-align: left;
    }

    .contact-item {
        text-align: left;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

    .cookie-popup {
        max-width: 40rem;
        left: auto;
        right: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4.8rem;
    }

    .service-card {
        /*flex: 0 1 calc(25% - 1.5rem);*/
    }

    .benefit-card {
        flex: 0 1 calc(33.33% - 1.33rem);
    }

    .blog-card {
        flex: 0 1 calc(33.33% - 2rem);
    }

    .contact-form {
        flex: 1;
        max-width: none;
        margin: 0;
    }

    .footer-links {
        gap: 6rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .benefits-grid {
        justify-content: center;
    }

    .benefit-card {
        /*flex: 0 1 calc(20% - 1.6rem);*/
        /*max-width: 25rem;*/
    }
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.success-content {
    padding: 12rem 0 8rem;
}

.success-message {
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.success-message h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.success-message p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-actions {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #007bff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border: 2px solid #007bff;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #007bff;
    color: white;
    transform: translateY(-0.2rem);
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.7rem, -0.6rem);
    }

    .success-message h1 {
        font-size: 2.8rem;
    }

    .success-message p {
        font-size: 1.6rem;
    }
}

/* Success Page Tablet and Desktop */
@media (min-width: 768px) {
    .success-actions {
        flex-direction: row;
        justify-content: center;
    }

    .success-message h1 {
        font-size: 4rem;
    }
}