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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: #fff;
}

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

.btn-cookie.reject {
    background-color: #7f8c8d;
    color: #fff;
}

.btn-cookie.reject:hover {
    background-color: #6c7a89;
}

.hero-card {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #95a5a6;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.intro-section,
.approach-section,
.commitment-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

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

.info-card,
.story-card,
.team-card,
.comparison-card,
.commitment-card,
.disclaimer-card,
.location-card,
.resources-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-card h2,
.story-card h2,
.team-card h2 {
    font-size: 1.875rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.section-title {
    font-size: 2rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.card-body p {
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-select:hover {
    background-color: #2980b9;
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    font-size: 1.125rem;
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
}

.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.split-card {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    gap: 2rem;
}

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

.card-text h2 {
    font-size: 1.875rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.card-text p {
    color: #555;
    margin-bottom: 1rem;
}

.card-image-right,
.card-image-left {
    flex: 1;
    min-height: 300px;
}

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

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

.benefits-section h2,
.values-section h2 {
    font-size: 2rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.benefits-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card,
.value-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.benefit-card:hover,
.value-card:hover {
    transform: translateY(-3px);
}

.benefit-card h3,
.value-card h3 {
    font-size: 1.375rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.benefit-card p,
.value-card p {
    color: #555;
}

.enrollment-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.enrollment-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.enrollment-card h2 {
    font-size: 1.875rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #229954;
}

.location-section,
.disclaimer-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.disclaimer-card {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #856404;
    line-height: 1.5;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: 4rem;
    padding: 3rem 0 1rem;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.page-hero {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.hero-card-small {
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.hero-card-small h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero-card-small p {
    font-size: 1.125rem;
    color: #555;
}

.story-section,
.methodology-section,
.team-section,
.impact-section,
.commitment-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.impact-section h2 {
    font-size: 2rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.impact-card p {
    color: #555;
    font-size: 0.9375rem;
}

.cta-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.cta-card {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-card .cta-primary {
    background-color: #fff;
    color: #3498db;
}

.cta-card .cta-primary:hover {
    background-color: #ecf0f1;
}

.services-detail-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ecf0f1;
}

.service-header h2 {
    font-size: 1.875rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
}

.service-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-description {
    flex: 1;
}

.service-description h3 {
    font-size: 1.25rem;
    color: #3498db;
    margin-bottom: 0.75rem;
}

.service-description h4 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-description ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-description ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.service-description p {
    margin-bottom: 0.75rem;
    color: #555;
}

.service-description strong {
    color: #2c3e50;
}

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

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

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

.comparison-card h2 {
    font-size: 1.875rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.comparison-card ul {
    margin-left: 1.5rem;
}

.comparison-card li {
    margin-bottom: 0.75rem;
    color: #555;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-detail {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-note {
    color: #7f8c8d;
    font-size: 0.9375rem;
    margin-top: 0.75rem;
}

.directions-section,
.enquiry-section,
.map-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.directions-card,
.enquiry-card,
.map-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.directions-card h2,
.enquiry-card h2,
.map-card h2 {
    font-size: 1.875rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.directions-card p,
.map-card p {
    color: #555;
    margin-bottom: 0.75rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
    font-size: 0.9375rem;
}

.faq-item a {
    color: #3498db;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

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

.thanks-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-card h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1rem;
    color: #27ae60;
    font-weight: 600;
    margin-top: 1rem;
}

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

.next-steps-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.next-steps-card h2 {
    font-size: 1.875rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #555;
    font-size: 0.9375rem;
}

.contact-info-card {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-info-card h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-email {
    font-weight: 600;
    color: #3498db;
    font-size: 1.125rem;
}

.resources-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.resources-card h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.resources-card ul {
    margin-left: 1.5rem;
}

.resources-card li {
    color: #555;
    margin-bottom: 0.75rem;
}

.return-section {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.return-card {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-return {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-return:hover {
    background-color: #2980b9;
}

.btn-return.secondary {
    background-color: #95a5a6;
}

.btn-return.secondary:hover {
    background-color: #7f8c8d;
}

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

.legal-container {
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.25rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-container strong {
    color: #2c3e50;
    font-weight: 600;
}

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

.cookie-table thead {
    background-color: #ecf0f1;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    color: #2c3e50;
    font-weight: 600;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-card,
    .split-card {
        flex-direction: column;
    }

    .hero-image,
    .card-image-right,
    .card-image-left {
        min-height: 250px;
    }

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

    .service-image {
        flex: 1;
        width: 100%;
    }

    .card-grid,
    .benefits-grid,
    .values-grid,
    .impact-grid,
    .contact-grid,
    .faq-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .hero-card-small h1 {
        font-size: 1.875rem;
    }

    .section-title,
    .cta-card h2 {
        font-size: 1.5rem;
    }

    .stat {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    .hero-content,
    .card-text,
    .enrollment-card,
    .legal-container {
        padding: 1.5rem;
    }
}