:root {
    --color-primary: #2a4365;
    --color-primary-dark: #1a365d;
    --color-secondary: #4a5568;
    --color-accent: #3182ce;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--color-primary-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.main-header {
    position: sticky;
    top: 0;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-sm);
    z-index: 100;
}

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

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

.ad-disclosure {
    background-color: var(--color-bg-alt);
    color: var(--color-text-light);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 3px;
    border: 1px solid var(--color-border);
}

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

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

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

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

.hero-content h1 {
    font-size: 2.75rem;
    max-width: 600px;
}

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

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-wrapper h2 {
    margin-bottom: 1.5rem;
}

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

.features-split {
    display: flex;
    min-height: 500px;
}

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

.feature-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.feature-list {
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.stats-section {
    background-color: var(--color-primary-dark);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.services-preview {
    padding: 5rem 2rem;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-info {
    padding: 1.5rem;
}

.service-info h4 {
    margin-bottom: 0.75rem;
}

.service-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.price {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-split {
    display: flex;
    min-height: 400px;
    background-color: var(--color-bg-alt);
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

blockquote {
    max-width: 500px;
}

blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

blockquote cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.testimonial-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.process-section {
    padding: 5rem 2rem;
    text-align: center;
}

.process-section h2 {
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 2rem;
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.step h4 {
    margin-bottom: 0.75rem;
}

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

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

.cta-section.alt {
    background-color: var(--color-bg-alt);
}

.cta-section.alt h2,
.cta-section.alt p {
    color: var(--color-text);
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.cta-section .btn-primary {
    background-color: #fff;
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-bg-alt);
}

.cta-section.alt .btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.page-hero {
    background-color: var(--color-primary-dark);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    color: #fff;
}

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

.about-intro-split {
    display: flex;
    min-height: 450px;
}

.about-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.values-section h2 {
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    padding: 1.5rem;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--color-accent);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h4 {
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.team-split {
    display: flex;
    min-height: 400px;
}

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

.team-image {
    flex: 1;
    overflow: hidden;
}

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

.team-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.methodology-section {
    padding: 5rem 2rem;
}

.methodology-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-wrapper > h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.methodology-wrapper > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

.methodology-pillars {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.pillar-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.pillar p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.services-intro {
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--color-bg-alt);
}

.services-intro-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.services-intro p {
    color: var(--color-text-light);
}

.services-full-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

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

.service-full-image {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-full-content h2 {
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.service-price-box {
    display: inline-block;
    background-color: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

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

.services-info-section {
    background-color: var(--color-bg-alt);
    padding: 4rem 2rem;
}

.info-blocks {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 300px;
}

.info-block h3 {
    margin-bottom: 1.5rem;
}

.info-block li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

.booking-section {
    padding: 5rem 2rem;
}

.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.booking-wrapper h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.booking-wrapper > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.booking-form {
    background-color: var(--color-bg-alt);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

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

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

.contact-info-panel {
    flex: 0 0 350px;
}

.contact-info-panel h2 {
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--color-text-light);
}

.contact-content-panel {
    flex: 1;
}

.contact-content-panel h2 {
    margin-bottom: 1.5rem;
}

.contact-map-placeholder {
    margin-top: 2rem;
    height: 250px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: var(--color-text-light);
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.faq-item p {
    color: var(--color-text-light);
    margin: 0;
}

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-wrapper {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #38a169;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-wrapper h1 {
    margin-bottom: 1rem;
}

.service-confirmation {
    background-color: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

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

.what-next-section {
    background-color: var(--color-bg-alt);
    padding: 5rem 2rem;
    text-align: center;
}

.what-next-section h2 {
    margin-bottom: 3rem;
}

.next-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.next-step h4 {
    margin-bottom: 0.5rem;
}

.next-step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    padding: 0.3rem 0;
    position: relative;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--color-accent);
}

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

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

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

.main-footer {
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

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

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
}

.footer-column h5 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

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

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

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

.disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .hero-split,
    .features-split,
    .features-split.reverse,
    .about-intro-split,
    .team-split,
    .team-split.reverse,
    .testimonial-split {
        flex-direction: column;
    }

    .hero-content,
    .feature-content,
    .about-content,
    .team-content,
    .testimonial-content {
        padding: 3rem 2rem;
    }

    .hero-image,
    .feature-image,
    .about-image,
    .team-image,
    .testimonial-image {
        min-height: 300px;
    }

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

    .service-full-image {
        flex: none;
        width: 100%;
        height: 250px;
    }

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

    .contact-info-panel {
        flex: none;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        padding: 1rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        padding: 1rem;
        box-shadow: var(--shadow-md);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--color-border);
    }

    .main-nav a {
        display: block;
        padding: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .stats-container {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

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

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
    }
}
