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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #2c5f2d;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #1e4520;
}

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-alt:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c5f2d;
}

.nav-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #2c5f2d;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

.hero-image {
    flex: 1;
    background: #2c5f2d;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1e4520;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,95,45,0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2c5f2d;
    text-decoration: none;
    border: 2px solid #2c5f2d;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c5f2d;
    color: #ffffff;
}

.intro-statement {
    padding: 80px 40px;
    background: #ffffff;
}

.statement-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    color: #546e7a;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 20px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 16px;
}

.cta-split {
    display: flex;
    background: #f8f9fa;
    min-height: 500px;
}

.cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.cta-form-container {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.consultation-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1e4520;
}

.philosophy-section {
    padding: 80px 40px;
    background: #ffffff;
}

.philosophy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.philosophy-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

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

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #7f8c8d;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

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

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
}

.page-hero {
    padding: 100px 40px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-hero-content p {
    font-size: 20px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.service-detail-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 24px 0;
}

.service-detail-image {
    flex: 1;
    background: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cta-section {
    padding: 80px 40px;
    background: #2c5f2d;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.services-cta-content p {
    font-size: 18px;
    color: #e8f5e9;
    margin-bottom: 32px;
}

.services-cta-content .cta-primary {
    background: #ffffff;
    color: #2c5f2d;
}

.services-cta-content .cta-primary:hover {
    background: #f8f9fa;
}

.about-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-hero-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #546e7a;
}

.about-hero-image {
    flex: 1;
    background: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.expertise-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
}

.expertise-image {
    flex: 1;
    background: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
}

.expertise-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.philosophy-detailed {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 24px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #f8f9fa;
}

.values-grid h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.perth-connection {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.perth-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.perth-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.about-cta {
    padding: 80px 40px;
    background: #2c5f2d;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-cta-content p {
    font-size: 18px;
    color: #e8f5e9;
    margin-bottom: 32px;
}

.about-cta-content .cta-primary {
    background: #ffffff;
    color: #2c5f2d;
}

.about-cta-content .cta-primary:hover {
    background: #f8f9fa;
}

.contact-hero {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-hero-content p {
    font-size: 20px;
    color: #546e7a;
}

.contact-content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c5f2d;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-note {
    padding: 24px;
    background: #f8f9fa;
    border-left: 4px solid #2c5f2d;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-image-section {
    flex: 1;
    background: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.approach-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.location-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #f8f9fa;
}

.location-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.location-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.contact-cta-section {
    padding: 80px 40px;
    background: #2c5f2d;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-cta-content p {
    font-size: 18px;
    color: #e8f5e9;
    margin-bottom: 32px;
}

.contact-cta-content .cta-primary {
    background: #ffffff;
    color: #2c5f2d;
}

.contact-cta-content .cta-primary:hover {
    background: #f8f9fa;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-main-text {
    font-size: 19px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 32px;
}

.thanks-details {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: #546e7a;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.next-steps-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-steps-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
}

.next-steps-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.thanks-additional {
    padding: 20px;
    margin-bottom: 40px;
}

.thanks-additional p {
    font-size: 16px;
    color: #7f8c8d;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 12px;
}

.legal-footer-links {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.legal-footer-links a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-footer-links a:hover {
    color: #1e4520;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-image {
        min-height: 400px;
    }

    .service-card {
        flex-direction: column !important;
    }

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

    .service-detail-split {
        flex-direction: column !important;
    }

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .services-intro h2,
    .philosophy-wrapper h2,
    .page-hero-content h1 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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