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

:root {
    --primary-color: #1565C0;
    --primary-dark: #0D47A1;
    --primary-light: #42A5F5;
    --secondary-color: #2E7D32;
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --error-color: #C62828;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

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

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 4px 10px;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.intro-section {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.section-header {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 20px;
    color: var(--text-medium);
}

.service-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-dark);
}

.trust-section {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.trust-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 16px;
    color: var(--text-medium);
}

.trust-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.trust-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.form-section {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.disclaimer-section {
    padding: 40px 30px;
    background-color: #FFF8E1;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: #BDBDBD;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #BDBDBD;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #BDBDBD;
}

.page-hero {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.hero-split-small {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
}

.hero-split-small .hero-content {
    flex: 1;
    padding: 0;
    background-color: transparent;
}

.hero-split-small .hero-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero-content-center p {
    font-size: 20px;
    color: var(--text-medium);
}

.about-content {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.content-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.values-section {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.team-section {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.team-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.team-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.cta-section-simple {
    padding: 80px 30px;
    background-color: var(--primary-color);
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: white;
}

.cta-content-centered p {
    font-size: 20px;
    color: white;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-content-centered .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-content-centered .cta-primary:hover {
    background-color: var(--bg-light);
}

.services-detailed {
    padding: 60px 30px;
    background-color: var(--bg-white);
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.service-price-large {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.contact-section {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-section {
    padding: 120px 30px;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.service-confirm {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 32px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.next-steps {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.next-steps-content {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

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

.step-card {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.legal-page {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-content p,
.legal-content li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card,
    .trust-split,
    .content-split,
    .team-split,
    .hero-split-small,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card.reverse,
    .intro-split.reverse,
    .team-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .hero-content-center h1 {
        font-size: 36px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
    }

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

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

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

    .form-container {
        padding: 30px;
    }
}