/* === CSS === */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    transition: opacity 1s ease-in-out;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 80px;
    height: 120px;
    overflow: visible;
}

.logo img {
    height: 220px;
    width: 240px;
    transform: scale(0.72);
    transform-origin: left;
    margin-left: -10px;
}

/* NAVIGATION */
nav {
    flex: 1;
    text-align: center;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #383838;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
    padding: 10px 5px;
}

nav ul li a.active {
    color: #007F9E;
    font-weight: bold;
}

nav ul li a:hover {
    color: #009A7A;
}

/* Mobile Menu Toggle */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1000;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 12px;
    margin-left: auto;
    margin-right: 0;
    
}

.btn {
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid;
    transition: all 0.3s;
    min-width: 90px;
    text-align: center;
}

/* Default state - English active */
#welsh-btn {
    color: #009A7A;
    border-color: #009A7A;
    background: transparent;
}

#welsh-btn:hover {
    background-color: #007365;
    color: white;
}

#english-btn {
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    color: white;
    border-color: #008D8A;
}

#english-btn:hover {
    background-color: #008D8A;
}

/* Welsh active state */
.welsh-active #welsh-btn {
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    color: white;
    border-color: #008D8A;
}

.welsh-active #welsh-btn:hover {
    background-color: #008D8A;
}

.welsh-active #english-btn {
    color: #009A7A;
    border-color: #009A7A;
    background: transparent;
}

.welsh-active #english-btn:hover {
    background-color: #007365;
    color: white;
}

.image-section img {
    width: 100%;
    height: 600px; /* Fixed height */
    object-fit: cover; /* Maintains aspect ratio, avoids squashing */
    display: block;
}
/* Welsh mode - smaller font size for navigation */
.welsh-active nav ul li a {
    font-size: 16px;
}

/* RESPONSIVE NAVBAR */
@media (max-width: 768px) {
    .container {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }

   .logo {
    order: 1;
    margin-top: -20px;
    margin-bottom: 10px;
    margin-left: 0;
    align-self: flex-start;
}

.logo img {
    height: 200px;
    width: auto;
    max-width: 100%;
}

    nav {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .menu-icon {
        display: block;
        position: absolute;
        right: 30px;
        top: 50px;
        font-size: 28px;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        background: white;
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease-in-out, opacity 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        opacity: 0;
    }
    
  nav ul.active {
    height: auto;
    padding: 5px 0;
    opacity: 1;
    line-height: 1.2; /* reduces spacing between nav links */
}

    
    nav ul li {
        margin: 15px 0;
        padding: 0 20px;
        text-align: left;
    }

    .buttons {
        order: 2;
        width: 100%;
        justify-content: center;
        margin: 15px 0;
        margin-top: -60px;
        gap: 15px;
    }

    .hero h1 {
        font-size: 26px;
        font-weight: bold;
        line-height: 1.5;
        max-width: 90%;
        padding: 10px 15px;
        text-align: left;
        color: #222;
        word-spacing: 2px;
    }
}
/* SERVICES SECTION */
.services {
    padding: 100px 0 80px;
    background-color: #fff;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SERVICE CARD STYLING */
.service-card {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 10px;
    text-transform: uppercase;
    color: #222;
    text-align: left;
    padding-left: 15px; /* Adds spacing to keep it away from the corner */
}

.service-card p {
    font-size: 14px;
    color: #555;
    padding: 0 15px 20px;
    line-height: 1.5;
    flex-grow: 1;
    text-align: left;
}


/* RESPONSIVE SERVICES GRID */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 180px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }
}


/* INFO SECTION */
.info-section {
    text-align: center;
    padding: 10px 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: white;
}

.info-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.info-link {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #3498db;
    text-decoration: none;
    margin-top: 8px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.info-link:hover {
    color: #2076b5;
    text-decoration: underline;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .info-section {
        padding: 10px;
    }

    .info-text {
        font-size: 13px;
        max-width: 90%;
    }

    .info-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .info-text {
        font-size: 12px;
        max-width: 100%;
    }

    .info-link {
        font-size: 12px;
    }
}


/* CORE VALUES SECTION */
.core-values {
    background-color: #D0DFC6; /* Light green background */
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* VALUES CONTAINER */
.values-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* INDIVIDUAL VALUE CARD */
.value-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1150px;
    text-align: left;
    padding: 20px;
    width: 100%; /* Ensures all cards align properly */
}

.value-card img {
    width: 50%; /* Increased image size */
    height: 300px; /* Increased height */
    object-fit: cover;
    border-radius: 8px;
}

.value-text {
    padding: 0 20px;
    flex-grow: 1;
}

.value-text h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #222;
}

.value-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .values-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .value-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .value-card img {
        width: 90%; /* Adjusted width to make it slightly smaller than full width */
        height: 160px; /* Increased height for better visibility */
        border-radius: 8px 8px 0 0;
        object-fit: cover;
        margin: 0 auto; /* Centers the image */
    }
    

    .value-text {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 16px;
    }

    .value-text h3 {
        font-size: 15px;
    }

    .value-text p {
        font-size: 13px;
    }
}


/* IMPACT SECTION */
.impact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}



.impact-text {
    font-size: 14px;
    color: #555;
    max-width: 1200px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ANNUAL FIGURES */
.sub-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.figures-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.figure {
    flex: 1;
    min-width: 200px;
}

.figure-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.figure-description {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
    line-height: 1.4;
}

/* COLORS */
.green {
    color: #2EDC0C; /* Green */
}

.blue {
    color: #096B96; /* Blue */
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .impact-text {
        font-size: 13px;
        max-width: 90%;
    }

    .figures-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .figure {
        min-width: auto;
    }

    .figure-number {
        font-size: 22px;
    }

    .figure-description {
        font-size: 13px;
    }
}


/* DONATION SECTION */
.donation-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
    background-color: white;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.donation-text {
    font-size: 14px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.donation-link {
    color: #0073b7;
    text-decoration: none;
    font-weight: bold;
}

.donation-link:hover {
    text-decoration: underline;
}

.donation-ways {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
}

.donation-ways ul {
    list-style: none;
    padding: 0;
}

.donation-ways li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.donation-thanks {
    font-size: 14px;
    font-weight: bold;
    color: #444;
    margin-top: 20px;
}

/* BLUE BACKGROUND STRIP */
.donation-background {
    background-color: #096B96; /* Blue color */
    height: 200px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 55%; /* Moves it under the donation card */
    z-index: -1; /* Places it behind the card */
}

/* DONATION CARD */
.donation-card {
    background: white;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    margin: 60px auto;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 460px;
}

.donation-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.donation-subtext {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.donation-amount {
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: #2EDC0C;
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 15px;
    width: 90%;
}

.donation-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    margin-top: 60px;
}

.donation-toggle input {
    width: 90px;
    height: 30px;
    appearance: none;
    background: linear-gradient(to right, #2EDC0C 50%, white 50%);
    border: 2px solid #2EDC0C;
    cursor: pointer;
   
}

.donation-toggle input::-webkit-slider-thumb {
    appearance: none;
    width: 0;
    height: 0;
}


.donate-btn {
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    color: white;
    border: none;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    width: 50%;
    transition: 0.3s;
    margin-top: 70px;
    height: 60px;
  }

.donate-btn:hover {
    background: #27AE60;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .donation-section {
        padding: 40px 15px;
    }

    .donation-text {
        font-size: 13px;
        max-width: 90%;
    }

    .donation-ways {
        max-width: 90%;
    }

    .donation-background {
        height: 200px;
        top: 60%;
    }

    .donation-card {
        max-width: 350px;
        margin: 50px auto;
    }

    .donation-amount {
        font-size: 22px;
        padding: 12px 25px;
    }

    .donate-btn {
        font-size: 13px;
        padding: 12px 18px;
    }
}


/* JOIN OUR TEAM SECTION */
.join-team {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-text {
    font-size: 14px;
    color: #555;
    max-width: 1200px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* VOLUNTEER CONTAINER */
.volunteer-container {
    display: flex;
    align-items: stretch;
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
}

/* VOLUNTEER INFO */
.volunteer-info {
    background-color: #C6D9B7;
    color: #FFFFFF;
    padding: 30px;
    flex: 1;
    text-align: left;
}

.volunteer-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.volunteer-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* CONTACT DETAILS */
.contact-details {
    font-size: 14px;
    color: #FFFFFF;
}

.contact-details .icon {
    font-size: 16px;
    margin-right: 5px;
}

.contact-details a {
    color: #0073b7;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* VOLUNTEER IMAGE */
.volunteer-image {
    flex: 1;
}

.volunteer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .volunteer-container {
        flex-direction: column;
    }

    .volunteer-info {
        padding: 25px;
        text-align: left;
    }

    .volunteer-info h3 {
        font-size: 18px;
        margin-bottom: 12px;
        text-transform: uppercase;
        font-weight: bold;
        text-align: left;
        margin-left: 20px;
    }

    .volunteer-info p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 90%;
        margin: 0 auto 15px;
        text-align: left;
    }

    .contact-details {
        text-align: left;
    }

    .contact-details p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .volunteer-image img {
        width: 100%;
        height: auto;
    }
}



/* TESTIMONIAL SECTION */
.testimonial-section {
    background-color: #096B96; /* Blue background */
    padding: 60px 20px;
    text-align: center;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    color: white;
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
}

/* QUOTE ICONS */
.quote-icon {
    font-size: 80px;
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
}

.left-quote {
    left: -60px;
    top: -50px;
}

.right-quote {
    right: 150px;
    bottom: -10px;
}

/* CLIENT SIGNATURE */
.client-signature {
    font-weight: bold;
    font-style: normal;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .testimonial-container {
        font-size: 14px;
        max-width: 90%;
    }

    .quote-icon {
        font-size: 40px;
    }

    .left-quote {
        left: -30px;
        top: -20px;
    }

    .right-quote {
        right: 120px;
        bottom: 15px;
    }
}

/* PARTNER SECTION */
.partner-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.partner-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-container img {
    width: 100%;
    height: auto;
    max-height: none; /* Ensures full width without limiting height */
    object-fit: cover;
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .partner-section {
        padding: 30px 15px;
    }

    .partner-container img {
        max-width: 80%;
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .partner-container img {
        max-width: 100%;
        max-height: 250px;
    }
}
.footer-section {
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    color: white;
    padding: 40px 20px 20px 20px;
    font-size: 14px;
    text-align: center;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: white;
    opacity: 0.3;
    margin: 0 auto 40px auto;
    max-width: 1200px;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-navigation a:hover {
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item img {
    width: 16px;
    height: 16px;
}

.footer-contact-item a {
    color: white;
    text-decoration: none;
}

.footer-contact-item a:hover {
    text-decoration: underline;
}

.footer-bottom {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }
}
/* ABOUT OUR SERVICES SECTION */
.about-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* SECTION TITLES */
.about-title {
    font-size: 20px;
    font-weight: bold;
    color: #2E2D2D;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* BODY TEXT */
.about-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* LIST STYLING */
.about-list {
    padding-left: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.about-list li {
    margin-bottom: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .about-container {
        max-width: 95%;
    }
    
    .about-title {
        font-size: 18px;
        text-align: center;
    }
    
    .about-text {
        font-size: 13px;
        text-align: justify;
    }
    
    .about-list {
        font-size: 13px;
    }
}

/* FAQ SECTION */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.faq-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.faq-container {
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 0;
    overflow: hidden;
}

.faq-question {
    background-color: #355e20;
    color: white;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: normal;
    position: relative;
}

.faq-question::after {
    content: "▲";
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-question.collapsed::after {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: #f9f9f9;
    padding: 15px;
    display: none;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.faq-answer.show {
    display: block;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .faq-question {
        font-size: 13px;
        padding: 12px;
    }
    
    .faq-answer {
        font-size: 13px;
        padding: 12px;
    }
}

/* TIMELINE SECTION */
.timeline-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.timeline-container {
    display: flex;
    background: linear-gradient(to bottom, #009A7A, #007F9E);
    position: relative;
}

.timeline-column {
    flex: 1;
    position: relative;
}

.timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    margin: 110px 0; /* Uniform and slightly tighter spacing */
}

/* Circles (bubbles) */
.timeline-circle {
    width: 130px; /* BIGGER BUBBLES */
    height: 130px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0; /* Prevents shrinking */
}

/* Bubble text */
.timeline-year {
    font-size: 28px;
    font-weight: bold;
    color: #009A7A; /* Green text */
}

/* Timeline content (subtext) */
.timeline-content {
    color: white;
    font-size: 16px;
    font-weight: 300;
    max-width: 260px;
    padding: 0 20px;
    line-height: 1.8;
    text-align: justify; /* JUSTIFIED TEXT */
}



.timeline-left .timeline-content {
    padding-left: 20px;
}

.timeline-left .timeline-circle {
    margin-right: 20px;
}

/* Right column adjustments */
.timeline-left .timeline-item {
    justify-content: flex-start;
    padding-left: 25%; /* Moved left-side items closer to center */
}

.timeline-right .timeline-item {
    justify-content: flex-start;
    padding-left: 20%;
    margin: 150px 0; /* Pushes them slightly down to sit between left-side bubbles */
}


.timeline-right .timeline-circle {
    margin-right: 20px; /* Bubble before text */
}

.timeline-right .timeline-content {
    padding-left: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
    }

    .timeline-column::before {
        content: none;
    }

    .timeline-left .timeline-item,
    .timeline-right .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin: 50px 0;
    }

    .timeline-circle {
        width: 80px;
        height: 80px;
    }

    .timeline-year {
        font-size: 20px;
    }

    .timeline-content {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
}

/* WHO WE ARE SECTION */
.who-we-are-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.who-we-are-container {
    max-width: 1250px;
    margin: 0 auto;
}

.who-we-are-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600; /* Semi bold */
    color: #313131;
    margin-bottom: 20px;
    text-transform: uppercase;
}


.who-we-are-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 300; /* Light */
    color: #121111;
    line-height: 1.8;
    text-align: justify;
}



/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .who-we-are-title {
        font-size: 20px;
        text-align: center;
    }
    
    .who-we-are-text {
        font-size: 13px;
    }
}

/* WHAT MAKES US DIFFERENT SECTION */
.difference-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: white;
   
}

.difference-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* IMAGE */
.difference-image {
    text-align: center;
    margin-bottom: 100px;
}

.difference-image img {
    width: 100%;
    max-width: 900px; /* smaller but still high quality */
    height: auto;
}


/* SECTION TITLE */
.difference-title {
    font-size: 22px;
    font-weight: bold;
    color: #121111;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
}

/* DIFFERENCE ITEM */
.difference-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
/* NUMBER STYLING */
.difference-number {
    font-size: 52px; /* Increased from 40px */
    color: #009A7A;
    margin-right: 15px;
    margin-top: -16px;
}

/* NUMBER STYLING */
.difference-number {
    font-size: 64px; /* Significantly larger */
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    color: #009A7A;
    margin-right: 30px;
}

/* HEADING */
.difference-heading {
    font-size: 28px; /* Bigger for emphasis */
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    color: #009A7A;
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .difference-container {
        max-width: 95%;
    }

    .difference-title {
        font-size: 20px;
        text-align: center;
    }

    .difference-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .difference-number {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .difference-heading {
        font-size: 16px;
    }

    .difference-text {
        font-size: 13px;
    }
}
  .contact-section {
            background: linear-gradient(135deg, #009A7A 0%, #007F9E 100%);
            padding: 80px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-wrapper {
            max-width: 1200px;
            width: 100%;
        }

        .contact-title {
            text-align: center;
            color: #fff;
            margin-bottom: 50px;
        }

        .contact-title h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .contact-title p {
            font-size: 18px;
            color: #e0f7f7;
            font-weight: 300;
        }

        .contact-container {
            display: flex;
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            min-height: 500px;
        }

     .contact-info-box {
    background: linear-gradient(135deg, #009A7A 0%, #007F9E 100%);
    color: #fff;
    flex: 0.9;
    margin: 10px;
    padding: 40px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

        .contact-info-box::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 170px;
    height: 170px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-box::after {
    content: '';
    position: absolute;
    bottom: 70px;
    right: 80px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

        .contact-info-box h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .contact-info-box .subtext {
            color: #b8f0f0;
            margin-bottom: 40px;
            font-size: 16px;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            margin-top: 2px;
            opacity: 0.9;
        }

        .contact-item-content {
            flex: 1;
        }

        .contact-item p {
            margin: 0;
            font-size: 16px;
            line-height: 1.5;
            color: #ffffff;
        }

        .contact-item a {
            color: #ffffff;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

        .contact-item a:hover {
            border-bottom-color: #ffffff;
        }

    .contact-hours-box {
    flex: 1.5;
    padding: 50px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}


        .hours-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 30px;
        }

        .hours-content {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
        }

        .hours-content p {
            margin-bottom: 20px;
        }

        .hours-content strong {
            color: #666;
            font-weight: normal;
            text-transform: none;
        }

        .hours-content a {
            color: #666;
            text-decoration: underline;
            font-weight: normal;
        }

        .hours-content a:hover {
            color: #666;
        }

        .phone-number {
            font-weight: normal;
            color: #666;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .contact-section {
                padding: 40px 15px;
            }

            .contact-container {
                flex-direction: column;
                border-radius: 15px;
            }

            .contact-info-box,
            .contact-hours-box {
                padding: 40px 30px;
            }

            .contact-title h2 {
                font-size: 32px;
            }

            .contact-title p {
                font-size: 16px;
            }

            .contact-info-box h3 {
                font-size: 24px;
            }
        }

        @media screen and (max-width: 480px) {
            .contact-info-box,
            .contact-hours-box {
                padding: 30px 20px;
            }

            .contact-title h2 {
                font-size: 28px;
            }
        }

        .lang-cy .contact-hours-box p {
  letter-spacing: normal !important;
  word-spacing: normal !important;
}
