* {
    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;
}

.ad-disclosure {
    background-color: #ecf0f1;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #7f8c8d;
    border-bottom: 1px solid #bdc3c7;
}

.header-main {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 100;
}

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

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

.hero-subtitle {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-content {
    flex: 1.2;
}

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

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

.intro-image {
    flex: 0.8;
    background-color: #e8ecef;
}

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

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

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

.service-card {
    flex: 0 1 calc(33.333% - 24px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 300px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

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

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

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

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    margin: 16px 24px;
    color: #2c3e50;
}

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-container > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #2c3e50;
    display: none;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    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: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.trust-split {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.trust-item {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

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

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

.trust-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ecef;
}

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

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

.footer-column {
    flex: 1;
}

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

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

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

.footer-column ul li {
    margin-bottom: 8px;
}

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

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px 40px;
    text-align: center;
}

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

.page-hero p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px;
}

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

.story-left {
    flex: 1;
    background-color: #e8ecef;
}

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

.story-right {
    flex: 1;
}

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

.story-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

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

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

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

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

.team-approach {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px 100px;
}

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

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

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

.team-approach img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ecef;
}

.cta-secondary {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

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

.cta-secondary p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-outline {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px 100px;
}

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

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

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

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

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

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

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

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

.contact-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-item {
    flex: 1;
}

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

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

.contact-message {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-message h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-message p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 60px;
    text-align: center;
}

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

.thanks-section > p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #e8f4f8;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 8px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

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

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

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

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

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