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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    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;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
}

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

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

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

.intro-image-left {
    flex: 1;
    background-color: #e9ecef;
}

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

.intro-content-right {
    flex: 1;
}

.intro-content-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.intro-content-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.services-header p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: #1a252f;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 15px;
    color: #5a6c7d;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin: 15px 20px;
}

.btn-service {
    display: block;
    width: calc(100% - 40px);
    margin: 20px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #ecf0f1;
}

.cta-content-left {
    flex: 1;
}

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

.cta-content-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-visual-right {
    flex: 1;
    background-color: #d5dce2;
}

.cta-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a252f;
}

.service-form {
    background-color: #f8f9fa;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-primary {
    padding: 14px 32px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d35400;
}

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a252f;
}

.main-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.7;
    color: #b8c1cc;
}

.footer-section a {
    display: block;
    color: #b8c1cc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    background-color: #141d26;
    padding: 30px 40px;
    margin-top: 40px;
}

.footer-disclaimer p {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #8b95a1;
}

.footer-bottom {
    background-color: #0f1820;
    padding: 20px 40px;
    text-align: center;
}

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

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 80px 40px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

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

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.service-detail-content ul {
    margin: 25px 0 30px 20px;
}

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

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: #e67e22;
    margin: 25px 0;
}

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

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

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

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

.about-content {
    flex: 1;
}

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

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.about-image {
    flex: 1;
    background-color: #f0f4f8;
}

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

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #3498db;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-section {
    text-align: center;
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

.contact-info {
    flex: 1;
}

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

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

.detail-item {
    margin-bottom: 30px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.detail-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
}

.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.directions-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.directions-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.thanks-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.thanks-container {
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

.service-confirmation h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.confirmed-service {
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
}

.next-steps {
    text-align: left;
    background-color: #ecf0f1;
    padding: 30px;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.next-steps ul {
    margin-left: 20px;
}

.next-steps ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 12px;
}

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

.thanks-actions a {
    text-decoration: none;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #5a6c7d;
}

.legal-page ul {
    margin: 15px 0 20px 25px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .cta-split,
    .service-detail-split,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

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

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