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

:root {
    --primary-color: #2C5F7D;
    --secondary-color: #4A90A4;
    --accent-color: #E67E22;
    --success-color: #2ECC71;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-visual {
    flex: 1;
    background: var(--bg-light);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

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

.value-proposition {
    display: flex;
    align-items: center;
}

.vp-visual {
    flex: 1;
    background: var(--bg-light);
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.vp-content {
    flex: 1;
    padding: 4rem 6rem;
}

.vp-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

.link-arrow::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 1rem;
}

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

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header-centered p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    border: 2px solid var(--accent-color);
    position: relative;
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.service-price::before {
    content: 'AUD ';
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.btn-select-service {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #D35400;
    transform: scale(1.02);
}

.trust-indicators {
    display: flex;
    align-items: center;
}

.trust-content {
    flex: 1;
    padding: 5rem 6rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.stats-row {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.trust-visual {
    flex: 1;
    background: var(--bg-light);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonials-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.testimonial-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

.process-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.process-content {
    flex: 1;
    padding: 5rem 6rem;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

.process-visual {
    flex: 1;
    background: var(--bg-white);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta-form-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.main-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.form-group input[readonly] {
    background: #E8E8E8;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #D35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.final-reassurance {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.reassurance-visual {
    flex: 1;
    background: var(--bg-white);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.reassurance-content {
    flex: 1;
    padding: 4rem 6rem;
}

.reassurance-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column p {
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.footer-column a {
    color: var(--text-light);
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 1rem 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.btn-sticky {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #D35400;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--success-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background: #27AE60;
}

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

.btn-cookie-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.about-story {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.story-visual {
    flex: 1;
    background: var(--bg-light);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mission-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.mission-visual {
    flex: 1;
    background: var(--bg-white);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mission-content {
    flex: 1;
    padding: 4rem 6rem;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.team-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.team-member {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.values-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.values-intro h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.impact-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.impact-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.impact-content > p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.impact-stat {
    text-align: center;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 250px;
}

.approach-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.approach-visual {
    flex: 1;
    background: var(--bg-white);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.approach-content {
    flex: 1;
    padding: 4rem 6rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-about p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.services-intro {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

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

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.service-detail {
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-detail.featured-service {
    border: 3px solid var(--accent-color);
}

.service-detail-header {
    background: var(--bg-light);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-detail-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-price::before {
    content: 'AUD ';
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
}

.service-detail-body {
    padding: 2.5rem 3rem;
    display: flex;
    gap: 3rem;
}

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

.service-detail-description p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.service-detail-includes ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-includes ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-detail-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.payment-info {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.payment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

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

.payment-col {
    flex: 1;
}

.payment-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.payment-col p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.contact-info-section {
    padding: 3rem 2rem 5rem;
    background: var(--bg-white);
}

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

.contact-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-main > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

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

.faq-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.contact-map {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.map-content {
    max-width: 1000px;
    margin: 0 auto;
}

.map-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

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

.alt-contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.alt-contact-text {
    flex: 1;
}

.alt-contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.alt-contact-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.alt-contact-visual {
    flex: 1;
    background: var(--bg-white);
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

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

.thanks-hero {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.service-confirmation {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.next-steps {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

.thanks-resources {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.resources-content {
    max-width: 1000px;
    margin: 0 auto;
}

.resources-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resources-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.resource-cards {
    display: flex;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-alternative {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

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

.alternative-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.alternative-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thanks-footer-cta {
    padding: 4rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.thanks-footer-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.legal-page {
    padding: 3rem 2rem 5rem;
    background: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

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

.legal-content li {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

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

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

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

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

@media (max-width: 1024px) {
    .hero-split,
    .value-proposition,
    .trust-indicators,
    .process-split,
    .final-reassurance,
    .about-story,
    .mission-split,
    .approach-split {
        flex-direction: column;
    }

    .hero-text,
    .vp-content,
    .trust-content,
    .process-content,
    .reassurance-content,
    .story-content,
    .mission-content,
    .approach-content {
        padding: 3rem 2rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-detail-body {
        flex-direction: column;
    }

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

    .impact-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .resource-cards {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-header-centered h2,
    .testimonials-section h2,
    .team-section h2 {
        font-size: 2.2rem;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .team-member,
    .value-card,
    .faq-item {
        min-width: 100%;
    }

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