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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.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: 1rem;
}

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

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

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

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

.btn-accept {
    background-color: var(--highlight-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: #d63651;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

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

.nav-links a:hover {
    color: var(--highlight-color);
}

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

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

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.hero-image {
    flex: 1;
    background-color: var(--accent-color);
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #d63651;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
    background-color: var(--bg-light);
}

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

.intro-right {
    flex: 1;
    padding: 4rem 3rem;
}

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

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.services-showcase {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

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

.service-split {
    display: flex;
    margin-bottom: 3rem;
    min-height: 400px;
}

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

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

.service-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

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

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

.select-service {
    padding: 0.9rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.credentials-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.credentials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.credential-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.credential-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.credential-card p {
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

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

.form-container-split {
    display: flex;
    gap: 3rem;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    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(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--highlight-color);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d63651;
    transform: translateY(-2px);
}

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--highlight-color);
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.footer-col p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--highlight-color);
}

.email-display {
    color: rgba(255,255,255,0.9);
}

.footer-bottom {
    max-width: 1400px;
    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.7);
    font-size: 0.9rem;
}

.page-hero {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
}

.about-content {
    flex: 1;
    padding: 3rem;
}

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

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
}

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

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

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

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

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

.team-section {
    max-width: 1400px;
    margin: 3rem auto;
}

.team-intro-split {
    display: flex;
}

.team-text {
    flex: 1;
    padding: 3rem;
    background-color: var(--accent-color);
    color: var(--white);
}

.team-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

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

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

.philosophy-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
}

.philosophy-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.cta-about-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.cta-about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-about-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.services-detailed {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    display: flex;
    margin-bottom: 3rem;
    min-height: 450px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card-image {
    flex: 1;
    background-color: var(--accent-color);
}

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

.service-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-card-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
}

.services-cta-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
}

.services-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.contact-info-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-split {
    display: flex;
    gap: 3rem;
}

.contact-details {
    flex: 1;
    padding: 2rem;
}

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

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-text-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.contact-text-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-text-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.visit-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.visit-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
}

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

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

.thanks-content > p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.thanks-details {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-next-steps ol {
    margin-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-page {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 3rem 2rem;
}

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

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-page a {
    color: var(--accent-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: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .service-split,
    .about-split,
    .team-intro-split,
    .contact-split,
    .form-container-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .service-text,
    .form-wrapper,
    .contact-details,
    .service-card-content {
        padding: 2rem;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
