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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.cookie-banner.active {
    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: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

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

.btn-reject {
    background-color: #7f8c8d;
    color: #fff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

.navbar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-label {
    font-size: 11px;
    color: #999;
    border-left: 2px solid #e0e0e0;
    padding-left: 20px;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

.value-split,
.approach-split,
.story-split,
.team-split,
.contact-split,
.availability-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.value-image,
.approach-image,
.story-image,
.team-image,
.contact-image,
.availability-image {
    flex: 1;
    background-color: #f0f0f0;
}

.value-image img,
.approach-image img,
.story-image img,
.team-image img,
.contact-image img,
.availability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-content,
.approach-content,
.story-content,
.team-content,
.contact-info,
.availability-content {
    flex: 1;
    padding: 80px 60px;
}

.value-content h2,
.approach-content h2,
.story-content h2,
.team-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.value-content p,
.approach-content p,
.story-content p,
.team-content p,
.availability-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
    font-size: 17px;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.services-intro {
    max-width: 900px;
    margin: 80px auto 60px;
    text-align: center;
    padding: 0 40px;
}

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

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 27px);
    min-width: 320px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8eef3;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.price {
    padding: 0 25px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.form-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.form-container {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.selected-service-display {
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    padding: 15px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

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

.trust-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.trust-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-content {
    flex: 1.5;
}

.trust-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #666;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    text-align: center;
}

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

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
}

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

.hero-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #666;
}

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

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

.page-hero-centered {
    text-align: center;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.page-hero-centered h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-hero-centered p {
    font-size: 18px;
    color: #666;
}

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

.values-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.approach-detail {
    max-width: 1400px;
    margin: 80px auto;
}

.approach-split-reverse {
    display: flex;
}

.approach-detail h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
    padding: 0 40px;
}

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

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.cta-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #3498db;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.cta-content p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.cta-content .cta-primary:hover {
    background-color: #ecf0f1;
}

.cta-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

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

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

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

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

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

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

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 24px;
}

.price-box {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.cta-centered {
    text-align: center;
    padding: 80px 40px;
    background-color: #f8f9fa;
    margin: 80px 0;
}

.cta-centered h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-centered p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

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

.map-notice {
    background-color: #f8f9fa;
    padding: 60px;
    text-align: center;
    border-radius: 8px;
}

.map-notice p {
    font-size: 17px;
    color: #666;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

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

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

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content ul li {
    color: #555;
    margin-bottom: 10px;
}

.legal-content em {
    color: #888;
    font-size: 15px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookie-table td {
    color: #555;
    font-size: 15px;
}

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

.thanks-content {
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.service-confirm {
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    padding: 15px;
    margin: 30px 0;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
}

.thanks-next {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
}

.thanks-next h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-next ul {
    list-style: none;
    padding: 0;
}

.thanks-next ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .approach-split,
    .form-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .cta-split,
    .service-detail-split,
    .contact-split,
    .availability-split {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .trust-split {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .ad-label {
        border-left: none;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }

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

    .service-card {
        width: 100%;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}