
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* About Me Btn */
.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #0056b3;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #e7ecef 0%, #a3cef1 100%);
    color: #274c77;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Importing Cool Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&family=Playfair+Display:wght@700&family=Anton&display=swap');


/* Header and Navigation */
header {
    background: linear-gradient(145deg, #274c77 0%, #6096ba 100%);
    width: 100%;
    padding: 1.5rem 0;
    position: relative;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

nav {
        width: 100%;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        position: absolute;
        flex-direction: row;
        margin: auto;
        top: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        right: 0px;
        left: 0px;
}

.logo {
        display: flex;
        position: relative;
        align-items: flex-start;
        justify-content: flex-start;
}

.logo img {
    width: 300px; /* You can increase this value as needed */
    height: 100px;
    object-fit: contain;
    padding-left: 40px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.logo h1 {
    color: #e7ecef;
    font-family: 'Anton', sans-serif;
    font-size: 3.2rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    padding-right: 40px;
}

.nav-links li a {
    color: #e7ecef;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links li a i {
    margin-right: 0.5rem;
}

.header-title {
    text-align: center;
    width: 100%;
    color: #e7ecef;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 1.5rem 0;
    line-height: 80px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

/* Keyframes for Animations */
@keyframes glow {
    0% { text-shadow: 0 0 10px #a3cef1, 0 0 20px #a3cef1, 0 0 30px #6096ba; }
    100% { text-shadow: 0 0 20px #a3cef1, 0 0 30px #6096ba, 0 0 40px #274c77; }
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateX(-100px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 3rem;
    text-align: center;
}

.container h1 {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    color: #274c77;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    animation: slideIn 1.2s ease-out;
}

.container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #8b8c89;
    margin-bottom: 3rem;
    font-weight: 300;
}

.btn-custom {
    display: inline-block;
    background: linear-gradient(45deg, #6096ba, #a3cef1);
    color: #e7ecef;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #a3cef1, #6096ba);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Image Section */
.image-section {
    display: flex; /* Changed from grid to flex for better height control */
    gap: 3rem;
    margin-top: 4rem;
    align-items: stretch; /* Make both boxes equal height */
}

.image-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.image-box-large {
    flex: 2; /* Left section (image) takes 2/3 */
}

.image-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
    box-sizing: border-box; /* ensures padding doesn't overflow the container */
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1);
}

.image-box p {
    padding: 2rem;
    color: #274c77;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: auto 0; /* Vertically center text */
}

.text-only-box {
    justify-content: center;
}


/* Visit Us Section */
.visit-us {
    background: linear-gradient(135deg, #a3cef1, #6096ba);
    padding: 4rem 3rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 20px;
}

.visit-us h2 {
    font-family: 'Playfair Display', serif;
    color: #274c77;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.visit-us p {
    color: #e7ecef;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.visit-button {
    background: #274c77;
    color: #e7ecef;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
}

.visit-button:hover {
    background: #a3cef1;
    color: #274c77;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 3rem;
    text-align: center;
}

.benefits h2 {
    font-family: 'Playfair Display', serif;
    color: #274c77;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefits li {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #274c77;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;

}

.benefits li .emoji {
    min-width: 30px; /* ensures all emojis align vertically */
    font-size: 1.5rem;
    line-height: 1.5;
}

.benefits li .text {
    flex: 1;
}

.benefits li:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #a3cef1, #e7ecef);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #e7ecef, #a3cef1);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(163, 206, 241, 0.2), transparent);
    z-index: 0;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    color: #274c77;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #a3cef1;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 5rem;
    color: rgba(163, 206, 241, 0.3);
    font-family: 'Playfair Display', serif;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 3px solid #a3cef1;
    transition: border-color 0.4s ease;
}

.testimonial:hover img {
    border-color: #6096ba;
}

.testimonial blockquote {
    color: #274c77;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial footer {
    color: #87CEEB;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
    max-width: 100%; /* Decrease the width */
    max-height: 60px; /* Decrease the height */
    padding: 8px 16px; /* Adjust padding as needed */
    box-sizing: border-box; /* Ensure padding doesn't affect width/height */
    overflow: hidden; /* Prevent overflow */
}

/* FAQ Section */
.faq {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.faq h2 {
    font-family: 'Playfair Display', serif;
    color: #274c77;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

details {
    background: #fff;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

summary {
    padding: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #274c77;
    cursor: pointer;
    transition: all 0.4s ease;
}

summary:hover {
    background: linear-gradient(45deg, #a3cef1, #e7ecef);
}

details[open] summary {
    background: #6096ba;
    color: #e7ecef;
}

details p {
    padding: 1.5rem;
    color: #274c77;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}


/* Footer */
    footer {
        background-color: #333;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 19.19;
        position: absolute;
        margin: auto;
        padding-top: 6px 0; /* Further reduced vertical padding */
        padding-left: 6px 0;
        padding-right: 6px 0;
        padding-bottom: 6px 0;
        justify-content: center;
    }

    .footer-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .footer-content .logo {
        display: flex;
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        padding-left: 20px;
    }

    .footer-content .logo img {
        width: 300px;
        height: 100px; /* You can increase this value as needed */
    }

    .contact-info {
        flex: 1;
        text-align: center;
    }

    .contact-info h2 {
        font-family: 'Anton', sans-serif;
        font-size: 1.6rem; /* Slightly smaller to reduce height */
        margin-bottom: 0.5rem;
    }

    .contact-info p {
        color: #e7ecef;
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
        line-height: 0.5;
    }

    .copyright {
        text-align: center;
        padding-left: 20px;
        padding-right: 40px;
    }

    .copyright p {
        color: #e7ecef;
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
        line-height: 0.5;
        padding-bottom: 10px;
        justify-content: center;
        text-align: center;
    }
    .social-buttons {
        display: flex;
        align-items: center; /* Vertically center social icons */
        align-self: stretch;
        padding-right: 40px;
        justify-content: flex-end;
        flex-direction: row;
        gap: 12px;
    }

    .social-buttons a img {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 44px; /* Slightly larger icons */
        transition: all 0.3s ease;
    }

    .social-buttons a img:hover {
        transform: scale(1.2) rotate(10deg);
        filter: brightness(1.15);
    }

    footer > p {
        display: flex;
        align-items: center;
        align-self: stretch;
        flex-direction: column;
        justify-content: flex-end;

        margin-top: 1.2rem;
        color: white;
        font-size: 13.6;
        font-style: Regular;
        font-family: 'Poppins', sans-serif;
        text-align: center;
        font-weight: 400;
        line-height: 23.12px;
        padding-bottom: 3px;
        font-size: 0.85rem;
        letter-spacing: 0.7px;
    }

.about {
    justify-content: center;
    align-items: center;
    align-self: center;
    display: inline-block;
    background: linear-gradient(45deg, #6096ba, #a3cef1);
    color: #e7ecef;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.about:hover::before {
    left: 100%;
}

.about:hover {
    background: linear-gradient(45deg, #a3cef1, #6096ba);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Extra Large Screens (Desktops, >1400px) */
@media (min-width: 1400px) {
    .container, nav, .benefits, .faq, .footer-content {
        max-width: 90%;
    }
}

/* Large Screens (Laptops, 1024px - 1400px) */
@media (max-width: 1400px) {
    .container, .benefits, .faq, .footer-content {
        max-width: 90%;
        padding: 0 2rem;
    }
    nav {
        width: 100%;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        position: absolute;
        top: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        right: 0px;
        flex-direction: row;
        margin: auto;
        left: 0px;
    }
    .logo {
        display: flex;
        position: relative;
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 1px;
    }
    
    .logo img {
        width: 250px;
        height: 83.33px;
    }
    
    .logo h1 {
        font-size: 2.8rem;
    }

    .header-title {
        font-size: 3rem;
    }

    .container h1 {
        font-size: 4rem;
    }

    .container p {
        font-size: 1.5rem;
    }

    .image-section {
        gap: 2rem;
    }

    .benefits h2, .testimonials h2, .faq h2, .visit-us h2 {
        font-size: 2.5rem;
    }
}

/* Medium Screens (Tablets, 768px - 1023px) */
@media (max-width: 1023px) {
    body {
        line-height: 1.6;
    }

    header {
        padding: 1rem 0;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .logo img {
        width: 250px;
    }

    .logo h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .header-title {
        font-size: 2.5rem;
        margin: 1rem 0;
    }

    .container {
        margin: 2rem auto;
        padding: 0 2rem;
    }

    .container h1 {
        font-size: 3rem;
    }

    .container p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .btn-custom {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .image-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-box, .image-box-large {
        flex: 1;
    }

    .image-box p {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .visit-us {
        padding: 3rem 2rem;
        margin: 2rem 0;
    }

    .visit-us h2 {
        font-size: 2.2rem;
    }

    .visit-us p {
        font-size: 1.1rem;
    }

    .visit-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .benefits {
        margin: 3rem auto;
        padding: 0 2rem;
    }

    .benefits ul {
        grid-template-columns: 1fr;
    }

    .benefits li {
        font-size: 1.1rem;
        padding: 1.5rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .benefits li .emoji {
        min-width: 30px;
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .benefits li .text {
        flex: 1;
    }

    .testimonials {
        padding: 3rem 2rem;
    }

    .testimonials h2 {
        font-size: 2.5rem;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .testimonial img {
        width: 60px;
        height: 60px;
    }

    .testimonial blockquote {
        font-size: 0.9rem;
    }

    .faq {
        margin: 3rem auto;
        padding: 0 2rem;
    }

    .faq h2 {
        font-size: 2.2rem;
    }

    summary {
        font-size: 1.1rem;
        padding: 1rem;
    }

    details p {
        font-size: 1rem;
        padding: 1rem;
    }

    footer {
        padding: 4px 0;
    }

    .footer-content {
        flex-direction: row;
        gap: 1rem;
        padding: 4px 15px;
    }

    .footer-content .logo img {
        width: 300px;
    }

    .contact-info h2 {
        font-size: 1.4rem;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .social-buttons a img {
        width: 40px;
    }

    footer > p {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

/* Small Screens (Mobile Phones, <=767px) */
@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    header {
        padding: 0.8rem 0;
    }

    nav {
        width: 100%;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        position: absolute;
        top: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        right: 0px;
        flex-direction: row;
        margin: auto;
        left: 0px;
    }
    .logo {
        display: flex;
        position: relative;
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 1px;
    }
    
    .logo img {
        width: 250px;
        height: 83.33px;
    }


    .logo h1 {
        font-size: 1.8rem;
    }
    

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links li a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .header-title {
        font-size: 2rem;
        margin: 0.8rem 0;
    }

    .container {
        margin: 1.5rem auto;
        padding: 0 1.5rem;
    }

    .container h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .container p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .btn-custom {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 30px;
    }

    .image-section {
        gap: 1rem;
    }

    .image-box p {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .visit-us {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
        border-radius: 15px;
    }

    .visit-us h2 {
        font-size: 1.8rem;
    }

    .visit-us p {
        font-size: 1rem;
    }

    .visit-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .benefits {
        margin: 2rem auto;
        padding: 0 1.5rem;
    }

    .benefits h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .benefits ul {
        grid-template-columns: 1fr;
    }

    .benefits li {
        font-size: 1rem;
        padding: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .benefits li .emoji {
        min-width: 30px;
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .benefits li .text {
        flex: 1;
    }

    .testimonials {
        padding: 2rem 1.5rem;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial {
        padding: 1rem;
    }

    .testimonial img {
        width: 50px;
        height: 50px;
    }

    .testimonial blockquote {
        font-size: 0.85rem;
    }

    .testimonial footer {
        font-size: 0.9rem;
        max-height: 50px;
        padding: 6px 12px;
    }

    .faq {
        margin: 2rem auto;
        padding: 0 1.5rem;
    }

    .faq h2 {
        font-size: 1.8rem;
    }

    summary {
        font-size: 1rem;
        padding: 0.8rem;
    }

    details p {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    footer {
        padding: 3px 0;
        margin-top: 1.5rem;
    }

    .footer-content {
        padding: 3px 10px;
    }

    .footer-content .logo img {
        width: 250px;
    }

    .contact-info h2 {
        font-size: 1.2rem;
    }

    .contact-info p {
        font-size: 0.8rem;
    }

    .social-buttons {
        gap: 0.6rem;
    }

    .social-buttons a img {
        width: 36px;
    }

    footer > p {
        font-size: 0.75rem;
        margin-top: 0.8rem;
    }
}

/* Extra Small Screens (Small Mobile Phones, <=480px) */
@media (max-width: 480px) {
    body {
        font-size: 12px;
    }
    nav {
        width: 100%;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        position: absolute;
        top: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        right: 0px;
        flex-direction: row;
        margin: auto;
        left: 0px;
    }
    .logo {
        display: flex;
        position: relative;
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 1px;
    }
    
    .logo img {
        width: 200px;
        height: 66.7px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-links li a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .header-title {
        font-size: 1.4rem;
    }

    .container h1 {
        font-size: 2rem;
    }

    .container p {
        font-size: 1rem;
    }

    .btn-custom {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .image-box p {
        font-size: 0.85rem;
    }

    .visit-us h2 {
        font-size: 1.5rem;
    }

    .visit-us p {
        font-size: 0 DLC_1rem;
    }

    .benefits h2 {
        font-size: 1.5rem;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

    .testimonial blockquote {
        font-size: 0.8rem;
    }

    .faq h2 {
        font-size: 1.5rem;
    }
    
    .footer-content .logo img {
        width: 140px;
    }


    .contact-info h2 {
        font-size: 1rem;
    }

    .social-buttons a img {
        width: 28px;
    }

    
    .about {
        display: inline-block;
        max-width: 100px;           /* Reduced width */
        width: 100%;
        padding: 0.5rem 1rem;       /* Smaller horizontal padding */
        font-size: 0.85rem;         /* Slightly smaller text */
        border-radius: 35px;        /* Optional: tighter curve */
        margin: 1rem auto;
        text-align: center;
    }
}
/* Base Styles for Flag Counter */
/* Extra Large Screens (Desktops, >1400px) */
@media (min-width: 1400px) {
    .flag-counter-wrapper img {
        max-width: 600px;
    }
}

/* Large Screens (Laptops, 1024px - 1400px) */
@media (max-width: 1400px) {
    .flag-counter-wrapper img {
        max-width: 500px;
    }
}

/* Medium Screens (Tablets, 768px - 1023px) */
@media (max-width: 1023px) {
    .flag-counter-wrapper {
        margin: 0.8rem 0;
    }

    .flag-counter-wrapper img {
        max-width: 400px;
    }
}

/* Small Screens (Mobile Phones, <=767px) */
@media (max-width: 767px) {
    .flag-counter-wrapper {
        margin: 0.6rem 0;
    }

    .flag-counter-wrapper img {
        max-width: 300px;
    }
}

/* Extra Small Screens (Small Mobile Phones, <=480px) */
@media (max-width: 480px) {
    .flag-counter-wrapper {
        margin: 0.5rem 0;
    }

    .flag-counter-wrapper img {
        max-width: 250px;
    }
}
