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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
}

.hero-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 40px;
}

.hero-right {
    flex: 1;
    background-color: #f5f7fa;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.why-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    gap: 60px;
    align-items: center;
}

.why-left {
    flex: 1;
    background-color: #ecf0f1;
}

.why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-right {
    flex: 1;
}

.why-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.why-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.services-preview {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
}

.services-intro {
    text-align: center;
    margin-bottom: 80px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-intro p {
    font-size: 18px;
    color: #546e7a;
}

.service-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc71;
    margin: 24px 0;
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 30px;
    margin: 100px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a252f;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

.form-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    gap: 60px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.form-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
}

.form-right {
    flex: 1;
}

.form-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-right input,
.form-right select,
.form-right textarea {
    padding: 14px 18px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-right button {
    background-color: #3498db;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-right button:hover {
    background-color: #2980b9;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 2000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

#acceptCookies {
    background-color: #2ecc71;
    color: #ffffff;
}

#acceptCookies:hover {
    background-color: #27ae60;
}

#rejectCookies {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

#rejectCookies:hover {
    background-color: rgba(255,255,255,0.1);
}

.cookie-buttons a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.cookie-buttons a:hover {
    text-decoration: underline;
}

.about-hero {
    background-color: #f8f9fa;
    padding: 100px 30px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #546e7a;
}

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

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.about-right {
    flex: 1;
    background-color: #ecf0f1;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
}

.about-values h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
}

.about-process {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    gap: 60px;
    align-items: center;
}

.process-left {
    flex: 1;
    background-color: #ecf0f1;
}

.process-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-right {
    flex: 1;
}

.process-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.process-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.about-cta {
    text-align: center;
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.about-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.about-cta p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
}

.services-header {
    background-color: #f8f9fa;
    padding: 80px 30px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-header p {
    font-size: 20px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 10px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #2ecc71;
    margin: 24px 0;
}

.services-cta {
    text-align: center;
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-cta p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
}

.contact-hero {
    background-color: #f8f9fa;
    padding: 80px 30px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-hero p {
    font-size: 20px;
    color: #546e7a;
}

.contact-split {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.contact-info {
    max-width: 600px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

#selectedServiceMessage {
    font-weight: 600;
    color: #2ecc71;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .why-section,
    .service-split,
    .form-section,
    .about-split,
    .about-process,
    .service-detail-card {
        flex-direction: column;
    }

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

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

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

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

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-left h1,
    .about-hero h1,
    .services-header h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}