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

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

body {
    font-family: 'Roboto', 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;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.2rem;
    color: #2c3e50;
}

h2 {
    font-size: 2.8rem;
    color: #2c3e50;
}

h3 {
    font-size: 2.4rem;
    color: #2c3e50;
}

h4 {
    font-size: 2rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-0.2rem);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: #fff;
    border: 0.1rem solid #ddd;
    border-radius: 0.8rem;
    box-shadow: 0 0.4rem 1.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;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #2980b9;
}

.cookie-btn.decline {
    background-color: #95a5a6;
    color: #fff;
}

.cookie-btn.decline:hover {
    background-color: #7f8c8d;
}

/* Header */
.header {
    background: linear-gradient(180deg, #141E30 0%, #28416F 100%);
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav {
    padding: 1rem 0;
}

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

.nav-brand .logo {
    height: 4rem;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: black;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

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

.nav-menu li {
    padding: 1rem 2rem;
}

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

.nav-menu a:hover {
    color: #3498db;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background-color: #f8f9fa;
}

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

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

.hero-text h1 {
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 60rem;
}

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

/* About Section */
.about-intro {
    padding: 8rem 0;
    background:linear-gradient(180deg, #141E30 0%, #28416F 100%);
    color: #fff;
}

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

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

.about-text h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.about-text p {
    color: #ecf0f1;
    font-size: 1.8rem;
    max-width: 60rem;
}

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

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

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.services-intro {
    text-align: center;
    font-size: 1.8rem;
    max-width: 80rem;
    margin: 0 auto 6rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-item {
    flex: 1;
    min-width: 28rem;
    max-width: 35rem;
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

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

.service-icon {
    margin-bottom: 2rem;
}

.service-icon img {
    width: 6rem;
    height: 6rem;
}

.service-item h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-item p {
    font-size: 1.6rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #141E30 0%, #28416F 100%);
    color: #fff;
}

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

.cta-text {
    text-align: center;
}

.cta-text h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.cta-text p {
    color: #ecf0f1;
    font-size: 1.8rem;
    max-width: 60rem;
    margin-bottom: 3rem;
}

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

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.features-intro {
    text-align: center;
    font-size: 1.8rem;
    max-width: 80rem;
    margin: 0 auto 6rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.feature-item {
    flex: 1;

    max-width: 55rem;
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-0.5rem);
}

.feature-image {
    height: 20rem;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item h3 {
    padding: 2rem 2rem 1rem;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item p {
    padding: 0 2rem 2rem;
    font-size: 1.6rem;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 6rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.testimonial-item {
    flex: 1;
    min-width: 28rem;
    max-width: 35rem;
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    margin-bottom: 2rem;
}

.testimonial-avatar img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-rating {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #f39c12;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.testimonial-item h4 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, #141E30 0%, #28416F 100%);
    color: #fff;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.contact-info p {
    color: #ecf0f1;
    font-size: 1.8rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 1.5rem;
    border: 0.1rem solid #bdc3c7;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

/* Footer */
.footer {
    background: linear-gradient(180deg, #141E30 0%, #28416F 100%);
    color: #ecf0f1;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 4rem;
    width: auto;
}

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

.footer-column {
    flex: 1;
    min-width: 20rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 0.1rem solid #4a5a6a;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Success Page */
.success-section {
    padding: 12rem 0 8rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    color: #27ae60;
    margin-bottom: 2rem;
}

.success-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }

    h1 {
        font-size: 4.8rem;
    }

    h2 {
        font-size: 3.6rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        background-color: transparent;
    }

    .nav-menu li {
        padding: 0;
        margin-left: 3rem;
    }

    .nav-toggle {
        display: none;
    }

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

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

    .hero-image {
        flex: 1;
    }

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

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

    .about-image {
        flex: 1;
    }

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

    .cta-text {
        flex: 1;
        text-align: left;
    }

    .cta-image {
        flex: 1;
    }

    .contact-content {
        flex-direction: row;
        gap: 6rem;
    }

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

    .contact-form {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .footer-logo {
        flex: 1;
    }

    .footer-links {
        flex: 2;
    }

    .cookie-popup {
        max-width: 50rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }

    .services-grid {
        justify-content: space-between;
    }

    .service-item {
        max-width: 22rem;
    }

    .features-grid {
        justify-content: space-between;
    }

    .feature-item {
        max-width: 55rem;
    }

    .testimonials-grid {
        justify-content: space-between;
    }

    .testimonial-item {
        max-width: 35rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    h1 {
        font-size: 5.6rem;
    }

    .hero-text p {
        font-size: 2rem;
    }

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

    .cta-text p {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: center;
        flex-direction: column;
    }

}