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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --text-dark: #2b2d42;
    --text-light: #8d99ae;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-card {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-primary {
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #d45f43;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    min-width: 500px;
    background-color: #dde1e6;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.intro-cards {
    padding: 80px 20px;
    background-color: var(--white);
}

.intro-cards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.cards-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.info-card {
    flex: 1;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.card-icon {
    width: 100%;
    height: 200px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-image {
    flex: 0 0 300px;
    background-color: #dde1e6;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    flex: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #1e4a61;
    transform: translateX(5px);
}

.testimonials-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    max-width: 350px;
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow-hover);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d45f43;
    box-shadow: var(--shadow-hover);
}

.disclaimer-section {
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-card {
    max-width: 600px;
    text-align: center;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #52b788;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.thanks-card h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-card p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-home {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-home:hover {
    background-color: #1e4a61;
    box-shadow: var(--shadow-hover);
}

.about-hero {
    padding: 100px 20px 60px;
    background-color: var(--bg-light);
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.about-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 20px;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 50px;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-list {
    padding: 60px 20px;
}

.services-list h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.contact-hero {
    padding: 100px 20px 60px;
    background-color: var(--bg-light);
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.contact-content {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    padding: 100px 20px 60px;
}

.legal-page h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-card {
        flex-direction: column;
    }

    .hero-image {
        min-width: 100%;
        min-height: 400px;
    }

    .cards-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 250px;
    }

    .cookie-content {
        flex-direction: column;
    }
}