* {
    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: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

.btn-cookie-accept {
    background: #2c5f7c;
    color: #fff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f7c;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 3px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

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

.main-nav a:hover {
    color: #2c5f7c;
}

.hero-section {
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8ba8 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #2c5f7c;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c5f7c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1e4558;
    transform: translateY(-2px);
}

.intro-cards {
    padding: 80px 0;
    background: #f9f9f9;
}

.cards-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.card-icon {
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

.mission-section {
    padding: 80px 0;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.mission-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-preview {
    padding: 80px 0;
    background: #fff;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2c5f7c;
    box-shadow: 0 4px 15px rgba(44, 95, 124, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    border-color: #2c5f7c;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
    gap: 15px;
}

.service-header h3 {
    font-size: 22px;
    color: #2c5f7c;
    flex: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
    white-space: nowrap;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: bold;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: #2c5f7c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1e4558;
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c5f7c;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.enquiry-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #2c5f7c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.approach-section {
    padding: 80px 0;
}

.approach-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.testimonial-section {
    padding: 80px 0;
    background: #2c5f7c;
    color: #fff;
}

.testimonial-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    opacity: 0.8;
    font-size: 14px;
}

.values-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f7c;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8ba8 100%);
    color: #fff;
    text-align: center;
}

.cta-final h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #aaa;
    line-height: 1.7;
    font-size: 14px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-header {
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8ba8 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.about-intro {
    padding: 80px 0;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-visual {
    flex: 1;
    min-width: 300px;
}

.values-detailed {
    padding: 80px 0;
}

.values-detailed h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

.principles-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.principle-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
}

.principle-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

.principle-card p {
    color: #666;
    line-height: 1.7;
}

.methodology-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.methodology-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.methodology-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.approach-cards {
    padding: 80px 0;
    background: #f9f9f9;
}

.approach-cards h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

.difference-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.difference-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.difference-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f7c;
}

.difference-item p {
    color: #666;
    line-height: 1.7;
}

.commitment-section {
    padding: 80px 0;
}

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.commitment-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.service-detail-header h2 {
    font-size: 28px;
    color: #2c5f7c;
    flex: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f7c;
}

.service-detail-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-features-detailed {
    margin-bottom: 30px;
}

.service-features-detailed h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

.service-features-detailed ul {
    list-style: none;
}

.service-features-detailed ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-features-detailed ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: bold;
    font-size: 18px;
}

.enrolment-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.enrolment-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c5f7c;
    text-align: center;
}

.enrolment-content > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 18px;
}

.comparison-section {
    padding: 80px 0;
}

.comparison-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.comparison-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: start;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f7c;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f7c;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.location-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.location-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.enquiries-section {
    padding: 80px 0;
}

.enquiries-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f7c;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f7c;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.directions-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.directions-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f7c;
    text-align: center;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.direction-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f7c;
}

.direction-item p {
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

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

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

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.selected-service-display {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #2c5f7c;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.thanks-next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: bold;
}

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

.btn-primary {
    padding: 16px 40px;
    background: #2c5f7c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #1e4558;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #2c5f7c;
    text-decoration: none;
    border: 2px solid #2c5f7c;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2c5f7c;
    color: #fff;
}

.additional-info {
    padding: 80px 0;
    background: #f9f9f9;
}

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.additional-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f7c;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.legal-content a {
    color: #2c5f7c;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e4558;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background: #2c5f7c;
    color: #fff;
}

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

.cookies-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

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

    .services-layout {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .approach-content,
    .story-content,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .value-item,
    .principle-card,
    .difference-item,
    .direction-item {
        flex: 1 1 100%;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }

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