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

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-image {
    flex: 1;
    position: relative;
    background-color: #34495e;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.3rem;
    color: #5d6d7e;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-asymmetric {
    display: flex;
    align-items: stretch;
    padding: 5rem 3rem;
    gap: 4rem;
    background-color: #ffffff;
}

.intro-block {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5d6d7e;
}

.intro-visual {
    flex: 0.8;
    background-color: #ecf0f1;
}

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

.services-split {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.2rem;
    color: #5d6d7e;
    max-width: 600px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
    min-height: 350px;
}

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

.btn-select-service {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #34495e;
}

.cta-section {
    padding: 5rem 3rem;
    background-color: #2c3e50;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.cta-secondary {
    padding: 1.2rem 2.5rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.footer-split {
    background-color: #34495e;
    color: #ecf0f1;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 3rem 3rem 2rem 3rem;
    gap: 3rem;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 2rem 3rem;
    background-color: #2c3e50;
    border-top: 1px solid #3e5266;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    padding: 1.5rem 3rem;
    text-align: center;
    border-top: 1px solid #3e5266;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.about-hero {
    padding: 5rem 3rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story-split {
    display: flex;
    padding: 5rem 3rem;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 0.8;
    background-color: #ecf0f1;
}

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

.values-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5d6d7e;
}

.team-approach {
    display: flex;
}

.approach-image {
    flex: 1;
    background-color: #34495e;
}

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

.approach-text {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 1.2rem;
}

.services-page-hero {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-page-hero p {
    font-size: 1.3rem;
    color: #5d6d7e;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 3rem 5rem 3rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 1.2rem;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 1.5rem;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    min-height: 400px;
}

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

.services-cta {
    padding: 4rem 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-cta p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
}

.contact-page {
    padding: 5rem 3rem;
}

.contact-info-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info-section > p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5d6d7e;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5d6d7e;
    margin: 0;
}

.thanks-page {
    padding: 5rem 3rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.cta-secondary-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #34495e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary-link:hover {
    background-color: #2c3e50;
}

.legal-page {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-text {
        padding: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

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

    .about-story-split {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

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

    .team-approach {
        flex-direction: column;
    }

    .approach-text {
        padding: 2rem;
    }

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

    .contact-details {
        flex-direction: column;
    }

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

    .footer-main {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }
}