* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #2b2b2b;
    background-color: #f4f6f4;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

.brand-link,
.brand-link:visited,
.brand-link:hover,
.brand-link:active {
    text-decoration: none;
    color: inherit;
}

.hero-container,
.session-content,
.quotes-container,
.pricing-container,
.contact-container,
.qualifications-container,
.faq-container,
.bottom-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    background-color: #73b41e;
    color: #ffffff;
    padding: 3rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.header-titles {
    text-align: left;
    flex: initial;
}

.header-titles h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.site-tagline {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3800;
    margin-top: 0.3rem;
}

.navbar {
    display: flex;
    justify-content: flex-end;     
    flex: 1;
}

.nav-links {
    display: flex;
    gap: 1.5rem;                 
    list-style: none;
}

.nav-links a {
    color: #1e3800;
    font-size: 1.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
    color: #ffffff;
}

.hero-container {
    margin: 2rem auto;
}

.hero {
    display: flex;       
    flex-direction: row;         
    justify-content: space-between; 
    align-items: center;      
    gap: 2rem;      
    padding: 3rem;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('Assets/landscapephotosbatchone/Friary landscape.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-content {
    flex: 1;
}

.hero-box {
    background-color: rgba(255, 255, 255, 0.92);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 1.6rem;
    line-height: 1.4;
    color: #1f3309;
    margin-bottom: 1.2rem;
}

.hero-list, 
.feature-list {
    padding-left: 1.2rem;
    font-size: 1.1rem;
}

.hero-list li, 
.feature-list li {
    margin-bottom: 0.6rem;
}

.video-wrapper {
    flex: 0 0 280px;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    object-fit: cover;
}

.video-wrapper video:fullscreen,
.video-wrapper video:-webkit-full-screen {
    object-fit: contain;
}

.session-content {
    margin: 3rem auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.session-image {
    width: 40%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.session-text {
    flex: 1;
}

.session-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1f3309;
}

.quotes-container {
    margin: 4rem auto;
}

.section-title {
    text-align: center;
    font-size: 1.7rem;
    color: #1f3309;
    margin-bottom: 2rem;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #555555;
    font-style: italic;
    margin-top: -1.2rem;
    margin-bottom: 2rem;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.quote-card {
    background: #ffffff;
    padding: 2rem;
    border-left: 5px solid #73b41e;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quote-card p {
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.quote-card cite {
    display: block;
    font-weight: 600;
    font-style: normal;
    color: #1f3309;
}

.pricing-container {
    margin: 4rem auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.price-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 6px solid #73b41e;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-title {
    font-size: 1.6rem;
    color: #1f3309;
    margin-bottom: 0.4rem;
}

.plan-description {
    font-size: 1.1rem;
    color: #555555;
    min-height: 2.8rem;
}

.plan-includes {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-includes h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 0.8rem;
}

.plan-includes ul {
    padding-left: 1.2rem;
}

.plan-includes li {
    margin-bottom: 0.6rem;
    color: #333333;
    font-size: 0.98rem;
}

.plan-v-container, 
.plan-price-container {
    text-align: center;
    border-top: 1px solid #e8e8e8;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 5.8rem;
    gap: 0.2rem;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f3309;
}

.instalments {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
}

.pay-what-you-can-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #73b41e;
    padding: 2.2rem 2rem;
    margin: 2.5rem auto 0 auto;
    text-align: center;
    width: 100%;
}

.pwyc-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f3309;
    margin-bottom: 0.8rem;
}

.pwyc-text {
    font-size: 1.1rem;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.pwyc-text .text-link {
    color: #1f3309;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.pwyc-text .text-link:hover {
    color: #73b41e;
}

.contact-container {
    margin: 4rem auto;
}

.primary-cta-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 6px solid #73b41e;
    margin-bottom: 3rem;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.contact-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.contact-text-content h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    color: #1f3309;
}

.contact-text-content .cta-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    background-color: #73b41e;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(115, 180, 30, 0.3);
    align-self: flex-start;
}

.contact-btn:hover {
    background-color: #5c9317;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(115, 180, 30, 0.4);
}

.contact-image-wrapper {
    width: 100%;
    height: 480px;
    aspect-ratio: 2 / 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.coach-image, #resizeone {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 41%;
    display: block;
}

.location-section {
    display: flex;
    gap: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 1.6rem;
    color: #1f3309;
    margin-bottom: 1rem;
}

.location-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.park-list {
    padding-left: 1.2rem;
}

.park-list li {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333333;
}

.map-wrapper {
    width: 100%;
    max-width: 700px;
    height: 300px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-secondary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #73b41e;
}

.info-card h4 {
    font-size: 1.2rem;
    color: #1f3309;
    margin-bottom: 0.6rem;
}

.text-link {
    color: #5c9317;
    font-weight: 700;
    text-decoration: underline;
}

.text-link:hover {
    color: #1f3309;
}
.qualifications-container {
    margin: 4rem auto;
}

.qualifications-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 6px solid #73b41e;
}

.qualifications-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.qualifications-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.5;
}

.association-text {
    font-size: 1.1rem;
    color: #1f3309;
    margin-bottom: 1.5rem;
}

.bio-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    border-top: 1px solid #e8e8e8;
    padding-top: 1.5rem;
}

.landscape-banner {
    width: 100%;
    height: 260px;
    margin: 4rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.banner-one {
    background-image: url('Assets/landscapephotosbatchone/IMG_20251024_102413 (1).jpg');
}

.banner-two {
    background-image: url('Assets/landscapephotosbatchone/IMG_20251024_102546 (1).jpg');
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(31, 51, 9, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.banner-text {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 550;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-container {
    margin: 4rem auto;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    border-radius: 12px;
    background-image: linear-gradient(rgba(244, 246, 244, 0.25), rgba(244, 246, 244, 0.25)), 
                      url('Assets/landscapephotosbatchone/Friary landscape.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-intro {
    text-align: center;
    max-width: 680px;
    margin: -1rem auto 2.5rem auto;
    color: #4a5d35;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #73b41e;
    padding: 1.8rem 2rem;
    backdrop-filter: blur(4px);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f3309;
    margin-bottom: 0.8rem;
}

.faq-answer {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0.5rem;
}

.faq-answer ul {
    padding-left: 1.2rem;
    margin-top: 0.6rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.association-note {
    margin-top: 0.8rem;
    font-size: 1rem;
    color: #1f3309;
}

.bottom-gallery-container {
    margin: 3.5rem auto 2rem auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.site-footer {
    background-color: #2b3a1a;
    color: #e4e4e4;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo {
    width: 160px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-ac-logo {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-links h4,
.footer-social h4,
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-contact-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding: 0.3rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link:hover {
    color: #73b41e;
    transform: translateX(3px);
}

.linkedin-link {
    display: inline-block;
    color: #ffffff;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.linkedin-link:hover {
    color: #73b41e;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #a3c293;
}

@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .header-container {
        flex-direction: column;
    }

    .header-titles {
        text-align: center;
    }

    .navbar {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .hero {
        flex-direction: column;
        padding: 1.5rem;
    }

    .video-wrapper {
        width: 100%;
        max-width: 300px;
    }

    .session-content {
        flex-direction: column;
    }

    .session-image {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.5rem 0.9rem;
        background: #f4f6f4;
        border-radius: 20px;
        font-size: 0.9rem;
    }

    .primary-cta-card {
        padding: 1.5rem;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .contact-text-content {
        align-items: center;
        text-align: center;
    }

    .contact-text-content h2,
    .contact-text-content .cta-message {
        text-align: center;
    }

    .contact-text-content .contact-btn {
        align-self: center;
    }

    .contact-image-wrapper {
        height: 280px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .location-section {
        flex-direction: column;
        padding: 1.5rem;
    }

    .map-wrapper {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 650px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .faq-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-item {
        padding: 1.2rem 1.4rem;
    }

    .faq-question {
        font-size: 1.15rem;
    }

    .map-wrapper {
        height: 220px;
    }
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333333;
}

.session-description {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #333333;
    margin-bottom: 1.2rem;
}

.highlight-text {
    font-weight: 600;
    color: #1f3309;
}

.session-text h3 {
    font-size: 1.4rem;
    color: #1f3309;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.gdpr-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.gdpr-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.8rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #73b41e;
}

.gdpr-title {
    font-size: 1.15rem;
    color: #1f3309;
    margin-bottom: 0.6rem;
}

.gdpr-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

@media (max-width: 600px) {
    .gdpr-card {
        padding: 1.2rem 1.4rem;
    }
}

.linkedin-link svg {
    width: 55px;
    height: 55px;
}

.footer-contact-link {
    font-size: 1.45rem;
    font-weight: 600;   
}