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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7e;
    --accent-color: #d4a574;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2d7a4f;
    --warning-color: #c47d3a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 3px;
}

main {
    min-height: calc(100vh - 200px);
}

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: var(--accent-color);
    position: relative;
}

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

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.cta-primary,
.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.cta-secondary,
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover,
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
}

.intro-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-image-offset {
    flex: 1;
    background-color: var(--secondary-color);
    margin-top: 2rem;
}

.intro-image-offset img {
    width: 100%;
    height: auto;
}

.services-split {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.section-header-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    background-color: var(--accent-color);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-price {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.service-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    width: calc(100% - 3rem);
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: var(--primary-color);
}

.process-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 2rem;
}

.process-content-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.process-visual {
    flex: 1;
    background-color: var(--secondary-color);
}

.process-visual img {
    width: 100%;
    height: auto;
}

.process-steps {
    flex: 1;
}

.process-steps h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.step {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.step h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.main-form,
.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: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-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: var(--secondary-color);
}

.trust-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 2rem;
}

.trust-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.trust-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-color);
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.about-hero {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.story-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: var(--secondary-color);
}

.story-image img {
    width: 100%;
    height: auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.values-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 2rem;
}

.team-intro {
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-description {
    flex: 1;
}

.team-description h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-description p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.team-image {
    flex: 1;
    background-color: var(--secondary-color);
}

.team-image img {
    width: 100%;
    height: auto;
}

.approach-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-block {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.approach-block h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-block p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.cta-about {
    padding: 5rem 2rem;
}

.cta-content-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-center h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-header {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 4rem 2rem;
}

.service-detail-section.alternate {
    background-color: var(--bg-light);
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 1.8;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--success-color);
    margin: 1.5rem 0;
}

.service-detail-image {
    flex: 1;
    background-color: var(--secondary-color);
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-header {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-content-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-wrapper {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
}

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

.note-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.note-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 900px;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.step-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-content,
    .process-content-split,
    .story-split,
    .team-split,
    .service-detail,
    .contact-content-split {
        flex-direction: column;
    }

    .hero-left h1,
    .about-hero-content h1,
    .services-header h1,
    .contact-header h1 {
        font-size: 2.2rem;
    }

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .section-header-left h2,
    .process-steps h2,
    .values-section h2,
    .approach-section h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-content {
        padding: 2rem;
    }

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

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