/* Reset and basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #111;
}

a {
    color: #3366ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

main {
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Header top bar */
.topbar {
    background: #e0e0e0;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 60px;
}

@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
}

.top-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    background: #ddd;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 14px;
    white-space: nowrap;
}

.btn:hover {
    text-decoration: none;
    transform: scale(1.02);
}

.btn.dark {
    background: #2f3b42;
    color: white;
}

.btn.dark:hover {
    transform: scale(1.02);
    background: #2f3b42;
    color: white;
    text-decoration: none;
}

/* Language dropdown */
.dropdown {
    position: relative;
}

.dropbtn {
    background: #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    min-width: 140px;
    border-radius: 6px;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #111;
    font-size: 14px;
    background: white;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Navigation */
.main-nav {
    background: #3a4247;
}

.main-nav ul {
    display: flex;
    padding: 10px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav>ul>li {
    position: relative;
    margin: 0 10px;
    padding: 0 5px;
    list-style: none;
}

.main-nav>ul>li>a {
    color: white;
    padding: 8px 12px;
    display: inline-block;
}

.main-nav>ul>li::after {
    content: "|";
    color: pink;
    margin-left: 10px;
}

.main-nav>ul>li:last-child::after {
    content: "";
}

.main-nav ul li ul {
    display: none;
    position: absolute;
    background: #f5f5f5;
    top: 35px;
    left: 0;
    min-width: 200px;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.main-nav ul li:hover ul {
    display: block;
}

.main-nav ul li ul li {
    list-style: none;
}

.main-nav ul li ul li a {
    color: #222;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
    background: white;
    transition: background 0.3s ease;
}

.main-nav ul li ul li a:hover {
    background: #eaeaea;
}

/* Hamburger Icon Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 12px 20px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        display: none;
        width: 100%;
        background-color: #3a4247;
    }

    .nav-wrapper.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

    .main-nav>ul>li {
        width: 100%;
        border-bottom: 1px solid #4e5a60;
        margin: 0;
    }

    .main-nav>ul>li>a {
        display: block;
        width: 100%;
        padding: 12px 20px;
    }

    .main-nav ul li ul {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: #444;
        display: none;
    }

    .main-nav ul li:hover ul {
        display: block;
    }

    .main-nav ul li ul li a {
        padding-left: 30px;
        background: #555;
        color: #fff;
    }
}

/* Footer */
.site-footer {
    background: black;
    color: white;
    padding: 30px 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    display: block;
    color: #ffffff;
    margin-bottom: 10px;
    word-break: break-all;
}

.footer-middle p {
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-middle a {
    color: #ffffff;
    font-size: 16px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-icons img {
    height: 28px;
    margin: 5px;
}

.founder-box {
    text-align: center;
    margin-top: 15px;
}

.founder-img {
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Main content */
main {
    padding: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        align-items: center;
    }

    .top-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        display: none;
        width: 100%;
    }

    .main-nav ul.show {
        display: flex;
    }

    .main-nav>ul>li {
        width: 100%;
        text-align: center;
    }

    .main-nav>ul>li>a {
        padding: 12px;
        display: block;
        width: 100%;
        background: #444;
    }

    .main-nav>ul>li::after {
        display: none;
    }

    .main-nav ul li ul {
        position: static;
        background: #555;
        box-shadow: none;
    }

    .main-nav ul li ul li a {
        color: white;
        background: #666;
    }

    .main-nav ul li ul li a:hover {
        background: #777;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    min-width: 100vh;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    /* Top and bottom padding only */
    color: white;


}

.hero-overlay h3 {
    margin: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 30px;
    padding: 0;
}

.hero-button {
    padding: 0.6rem 1.2rem;
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.hero-button:hover {
    background-color: #e64a19;
    transform: scale(1.02);
    text-decoration: none;
}

@media (max-width: 600px) {

    .hero-button {
        padding: 0.5rem 1rem;
        background-color: #ff5722;
        color: white;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-block;
        transition: background-color 0.3s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    .hero-button:hover {
        background-color: #e64a19;
        transform: scale(1.02);
    }
}

@media (max-width: 600px) {
    .hero-overlay {
        justify-content: center;
    }

    .hero-overlay h3 {
        margin: 0;
        white-space: nowrap;
        text-align: center;
        font-size: 30px;
        padding: 0;
    }
}

.video-carousel {
    width: 100%;
    padding: 4rem 4rem;
    padding-top: 50px;
    padding-bottom: 30px;
    background-color: #ffffff;
    text-align: center;
}

/* .carousel-heading {
    text-align: left;
    font-size: 2rem;
    margin-left: 32px;
    margin-bottom: 1rem;
    font-weight: 600;
} */

.carousel-container {
    width: 100%;
    overflow-x: auto;
}

.carousel-track {
    display: flex;
    gap: 1.2rem;
    padding: 10px;
    /* Padding on left and right added here */
    overflow-x: auto;
    scroll-behavior: smooth;
}

.video-slide {
    flex: 0 0 auto;
    width: 280px;
    height: 180px;
    max-width: 90vw;
    border-radius: 10px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-slide iframe {
    width: 100%;
    height: 200px;
    border: none;
}

@media (max-width: 600px) {
    .carousel-heading {
        font-size: 1.5rem;
    }

    .video-slide iframe {
        height: 150px;
    }
}

.circle-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.circle-item {
    max-width: 500px;
    flex: 1 1 150px;
}

.circle-item img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.circle-item h3 {
    margin: 0.5rem 0 0.2rem;
    font-size: 1.1rem;
}

.circle-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.join-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem 1rem;
    gap: 2rem;
    background-color: #f8f8f8;
}

.join-left,
.join-right {
    flex: 1 1 45%;
    min-width: 300px;
}

.join-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    max-width: 400px;
    /* Reduced from full width */
}

.join-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.join-right p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #444;
}

.join-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ff0000;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.join-button:hover {
    background-color: #d10404;
    transform: scale(1.02);
    text-decoration: none;
}

@media (max-width: 768px) {
    .join-section {
        flex-direction: column;
        text-align: center;
    }

    .join-right h2 {
        font-size: 1.5rem;
    }

    .join-right p {
        font-size: 0.95rem;
    }

    .join-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

.circle-section-1 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.circle-item-1 {
    flex: 1 1 200px;
    max-width: 500px;
}

.circle-item-1 img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 6px solid #ccc;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.circle-item-1 h3 {
    font-size: 1.6rem;
    margin: 0.5rem 0 0.2rem;
}

.circle-item-1 p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* Colored borders */
.border-red img {
    border-color: #e74c3c;
}

.border-blue img {
    border-color: #3498db;
}

.border-green img {
    border-color: #27ae60;
}

.border-purple img {
    border-color: #fbff17;
}

/* Button Wrapper */
.circle-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.circle-button {
    background-color: #ff1e00;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.circle-button:hover {
    background-color: #b30000;
    transform: scale(1.02);
    text-decoration: none;
}

@media (max-width: 768px) {
    .circle-section-1 {
        flex-direction: column;
        align-items: center;
    }

    .circle-item-1 {
        width: 100%;
        max-width: 300px;
    }

    .circle-button {
        width: 100%;
        max-width: 250px;
    }
}

.video-section {
    padding: 2rem 1rem;
    background-color: #f5f5f5;
    text-align: center;
}

.video-section h2 {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.4;
}

.video-title {
    text-decoration: underline;
    font-weight: normal;
}

.video-container {
    position: relative;
    padding-bottom: 30%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #9b59b6;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-footer {
    background-color: #3b3b3b;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.footer-column {
    flex: 1 1 50px;
    min-width: 200px;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-column a {
    color: #9db0ff;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
    text-shadow: 0 0 5px #9db0ff;
    transform: scale(1.03);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.store-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.store-icons a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background: #1a1a1a;
    padding: 12px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.store-icons i {
    font-size: 32px;
}

.store-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.footer-column.founder {
    text-align: center;
}

.footer-column.founder img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #fff;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* Individual platform colors */
.social.facebook {
    background-color: #1877f2;
}

.social.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.social.whatsapp {
    background-color: #25d366;
}

/* Hover effect */
.social:hover {
    transform: scale(1.1);
}


/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .store-icons,
    .social-icons {
        justify-content: center;
    }
}

.footer-copyright {
    background-color: #3b3b3b;
    /* Match footer background */
    color: #ccc;
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid #d6d6d6;
}

.footer-copyright p {
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mission-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-section img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .mission-section h2 {
        font-size: 2rem;
    }

    .mission-section p {
        font-size: 1rem;
    }
}

/* WHY SECTION */
.why-section {
    margin: 40px 0;
    padding: 20px;
    background-color: #f0dede;
    text-align: center;
}

.why-content h2 {
    font-size: 2.4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.why-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 0;
    /* Removed rounded box */
    box-shadow: none;
    /* Removed any shadow or box */
}


.why-text h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.why-text p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-text {
        margin-top: 20px;
    }
}

/* FOUNDER SECTION */
.founder-section {
    padding: 20px;
    background-color: #ffffff;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    /* Equal space top and bottom */
}

.founder-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    /* Circular frame */
    display: block;
    box-shadow: none;
    /* No shadow or box */
    border: none;
    /* No border */
}


.founder-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.founder-text p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-text {
        margin-top: 20px;
    }
}

/* Base Layout for Two-Column Sections */
.image-text-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

/* Columns */
.image-text-section .image-column,
.image-text-section .text-column {
    flex: 1 1 45%;
    text-align: center;
}

/* Images */
.image-text-section .image-column img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    max-width: 100%;
}

/* Text */
.image-text-section .text-column h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
    font-family: "Cormorant Garamond", serif;
}

.image-text-section .text-column p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    font-family: "Cormorant Garamond", serif;
}

/* Responsive Stack on Smaller Screens */
@media (max-width: 768px) {
    .image-text-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .image-text-section .image-column,
    .image-text-section .text-column {
        flex: 1 1 100%;
    }

    .image-text-section .image-column img {
        width: 100%;
        max-width: 100%;
    }
}

/* Centered Image with Header and Text Section */
.centered-image-text-section {
    padding: 4rem 2rem;
    box-sizing: border-box;
    max-width: 1000px;
    margin: 0 auto;
}

.centered-image-text-section .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 1.5rem;
}

.centered-image-text-section .section-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.centered-image-text-section .section-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    font-family: "Cormorant Garamond", serif;
    text-align: left;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .centered-image-text-section {
        padding: 2rem 1rem;
    }

    .centered-image-text-section .section-description {
        text-align: left;
    }
}

/* Circle Image Section */
.circle-image-section {
    padding: 1rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.circle-section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: #333;
}

.circle-card-container {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.circle-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-card-link:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.circle-card {
    max-width: 250px;
    text-align: center;
}

.circle-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.circle-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #004AAD;
}

.circle-card-text {
    font-size: .9rem;
    color: #555;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .circle-card-container {
        flex-direction: column;
        align-items: center;
    }

    .circle-card {
        max-width: 300px;
        margin-bottom: 2rem;
    }

    .circle-img {
        width: 150px;
        height: 150px;
    }
}

/* Section Container */
.image-text-section {
    padding: 3rem 2rem;
    background-color: #fff;
}

/* Flex container */
.image-text-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

/* Image Column */
.image-col {
    flex: 1;
    text-align: center;
}

.image-col-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Text Column */
.text-col {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.text-col-header {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-family: "Cormorant Garamond", serif;
    color: #222;
    margin-bottom: 1rem;
}

.text-col-subtext {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: "Cormorant Garamond", serif;
}

.text-col-button {
    padding: 0.6rem 1.2rem;
    background-color: #e53935;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.text-col-button:hover {
    background-color: #c62828;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-text-container {
        flex-direction: column;
        text-align: center;
    }

    .text-col {
        padding: 1rem 0;
    }

    .text-col-header {
        font-size: 1.6rem;
    }

    .image-col-img {
        max-width: 100%;
    }
}

/* Formal Letter Styling */
.formal-letter-section {
    width: 100%;
    background-color: #fdfdfd;
    font-family: 'Georgia', serif;
    color: #333;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.formal-letter-container {
    width: 100%;
    max-width: 100%;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    line-height: 1.8;
    box-sizing: border-box;
}

.letter-date,
.letter-recipient,
.letter-salutation,
.letter-body,
.letter-closing {
    margin-bottom: 1.5rem;
}

.letter-salutation {
    font-weight: bold;
    text-decoration: underline;
}

.letter-sender-name {
    font-weight: bold;
    font-size: 1.05rem;
}

.letter-signature {
    margin-top: 1rem;
    text-align: left;
}

.letter-signature img {
    width: 120px;
    height: auto;
}

/* Responsive */
@media (max-width: 600px) {
    .formal-letter-section {
        padding: 2rem 0.75rem;
    }

    .formal-letter-container {
        padding: 1.2rem;
    }

    .letter-signature img {
        width: 100px;
    }
}

/* Banner Image Section */
.banner-image-section {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    box-sizing: border-box;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Centered Header Section */
.centered-header-section {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
}

.centered-header {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive Adjustment */
@media (max-width: 768px) {
    .centered-header {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .centered-header {
        font-size: 1.6rem;
    }
}

/* Shared Section Styles */
.two-column-box-section {
    padding: 1rem 1rem;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Box Container */
.content-box {
    display: flex;
    flex-direction: row;
    border: 2px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* Columns */
.box-column {
    flex: 1;
    padding: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5eeea;
}

/* Image Styling */
.box-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Text Column */
.text-column h3 {
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.text-column p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
    }

    .box-column {
        padding: 1rem;
    }

    .section-header {
        font-size: 1.8rem;
    }

    .text-column h3 {
        font-size: 1.5rem;
    }

    .text-column p {
        font-size: 0.95rem;
    }
}

/* Reuse previous styles for layout and .section-header, .box-column, etc. */

/* Video Specific Styling */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Optional adjustments for small screens */
@media (max-width: 768px) {
    .section-header {
        font-size: 1.8rem;
    }

    .text-column h3 {
        font-size: 1.5rem;
    }

    .text-column p {
        font-size: 0.95rem;
    }
}

/* Pointer Columns Section */
.pointer-columns-section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.pointer-columns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pointer-column {
    flex: 1 1 45%;
    border: 2px solid #ccc;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    background-color: #f5eeea;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pointer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pointer-column ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    text-align: left;
}

.pointer-column li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pointer-columns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pointer-column {
        flex: 1 1 100%;
    }

    .section-header {
        font-size: 1.8rem;
    }

    .pointer-column h3 {
        font-size: 1.3rem;
    }

    .pointer-column li {
        font-size: 0.95rem;
    }
}

/* Importing distinct font for the header */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

.banner-text-section {
    width: 100%;
    margin: auto;
    margin-bottom: 1rem;
    padding: 0 1rem;
    box-sizing: border-box;
    text-align: center;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.banner-text-content {
    max-width: 1000px;
    margin: 2rem auto 0 auto;
    text-align: left;
}

.banner-header {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1rem;
    color: #333;
}

.banner-text-content p {
    font-family: sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-header {
        font-size: 1.5rem;
    }

    .banner-text-content {
        padding: 0 1rem;
    }
}

.image-text-bordered-section {
    width: 100%;
    padding: 2rem 1rem;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.img-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.img-col {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    /* limits image column width */
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-col img {
    width: 100%;
    /* scales to fit column */
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.text-col {
    flex: 1;
    min-width: 280px;
    border: 2px solid #ccc;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: white;
}

.text-col h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #222;
}

.text-col p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .img-text-container {
        flex-direction: column;
        text-align: center;
    }

    .text-col {
        text-align: left;
        width: 100%;
    }

    .img-col {
        max-width: 100%;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

.star-header-section {
    width: 100%;
    padding: 2rem 1rem;
    background-color: #f4f0ea;
    box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
}

.star-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.star-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2e2e2e;
    text-align: center;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.star-icon {
    color: brown;
    font-size: 8rem;
}

/* Responsive for small screens */
@media (max-width: 600px) {
    .star-header h2 {
        font-size: 1.2rem;
    }

    .star-icon {
        font-size: 6rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');

.banner-info-section {
    width: 100%;
    margin: 0;
    background-color: #fafafa;
    box-sizing: border-box;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-area {
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem;
    padding-top: 1rem;
    text-align: center;
}

.main-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.sub-section {
    text-align: left;
    margin-bottom: 1.5rem;
}

.sub-header {
    font-size: 1.4rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 0.5rem;
}

.sub-points {
    padding-left: 1.5rem;
    list-style-type: disc;
    color: #666;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #f50707;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #cf0606;
    text-decoration: none;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .main-title {
        font-size: 1.6rem;
    }

    .sub-header {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}

.image-text-duo {
    padding: 2rem 1rem;
    margin: 0 auto;
    max-width: 1200px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.left-column,
.right-column {
    flex: 1 1 100%;
    text-align: center;
}

.left-column {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ccc;
    object-fit: cover;
}

.right-column p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.outlined-header {
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 3px #ffffff;
    text-align: center;
}

.section-footer-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

@media (min-width: 768px) {

    .left-column,
    .right-column {
        flex: 1 1 45%;
    }

    .left-column {
        justify-content: flex-start;
    }

    .right-column {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .circle-img {
        width: 140px;
        height: 140px;
    }

    .outlined-header {
        font-size: 1.5rem;
    }

    .section-footer-text {
        font-size: 1rem;
    }
}

/* Two-Column Section */
.text-image-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 2rem 0;
    padding: 0;
}

/* Text Column */
.text-column {
    flex: 1;
    padding: 2rem;
    /* padding-top: 8rem; */
    background-color: #f9f9f900;
}

.fancy-header {
    font-family: 'Brush Script MT', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.purple-pointers {
    list-style-type: disc;
    color: purple;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.purple-pointers li {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.dual-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.red-header {
    color: red;
    font-size: 1.5rem;
}

.black-header {
    color: black;
    font-size: 1.5rem;
}

.sub-text {
    font-size: 1rem;
    margin-top: 0.8rem;
    color: #333;
}

/* Image Column */
.image-column {
    flex: 1;
    margin: 0;
    padding: 0;
}

.vision-image {
    width: 80%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    /* Center the image in the column */
}

/* Responsive */
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
    }

    .image-column,
    .text-column {
        width: 100%;
    }

    .text-column {
        padding-top: 0;
    }

    .fancy-header {
        font-size: 2rem;
        text-align: center;
    }

    .dual-header {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .purple-pointers {
        padding-left: 1rem;
    }

    .sub-text {
        text-align: center;
    }
}

.video-carousel-section {
    padding: 2rem 1rem;
    background-color: #f5f5f500;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.video-carousel-header {
    font-size: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
    padding: 2rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    scroll-behavior: smooth;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem;
}

.video-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-card iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.carousel-btn {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .video-card {
        flex: 0 0 250px;
    }

    .video-card iframe {
        height: 160px;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.3rem 0.6rem;
    }
}

.dual-part-section {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.part {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* PART 1 */
.part-one .part-text {
    flex: 5;
    background-color: #f8c6d8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.part-one .part-image {
    flex: 3.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part-one .part-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
}

.part-header {
    font-size: 1.8rem;
    font-family: 'Georgia', cursive;
    font-weight: bold;
    margin-bottom: 10px;
}

/* PART 2 */
.part-two .left-image {
    flex: 5.1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.part-two .left-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
}

.part-two .right-box {
    flex: 3;
    display: flex;
    flex-direction: column;
}

.top-text {
    flex: 1;
    background-color: #f8c6d8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: bold;
}

.bottom-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
}

/* RESPONSIVE: Maintain Layout with Shrinking Columns */
@media (max-width: 768px) {
    .part {
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .part-one .part-text,
    .part-one .part-image,
    .part-two .left-image,
    .part-two .right-box {
        flex: unset;
        width: auto;
    }

    .part-one .part-text,
    .top-text {
        font-size: 1rem;
        padding: 15px;
    }

    .part-header {
        font-size: 1.4rem;
    }

    .part img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .part-one,
    .part-two {
        gap: 0;
    }
}

.hero-overlay-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.4);
    /* optional dimming */
    border-radius: 12px;
}

.hero-overlay-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Segoe UI', sans-serif;
}

.hero-overlay-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-overlay-button {
    background-color: #ff0000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.hero-overlay-button:hover {
    background-color: #cc0000;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-overlay-title {
        font-size: 1.8rem;
    }

    .hero-overlay-subtitle {
        font-size: 1rem;
    }

    .hero-overlay-button {
        padding: 10px 22px;
        font-size: 0.95rem;
    }
}

.pointer-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

.pointer-header-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pointer-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.pointer-header {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    color: #222;
}

.pointer-subtext {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 16px 0;
    text-align: left;
}

.pointer-banner {
    width: 100%;
    height: auto;
    margin: 0;
}

.pointer-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    margin-right: 16px;
}

.pointer-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.pointer-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.pointer-block {
    display: flex;
    align-items: center;
    margin: 24px 0;
    flex-wrap: wrap;
}

.pointer-text {
    max-width: 80%;
}

.pointer-header {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.pointer-subtext {
    font-size: 1.3rem;
    color: #666;
    margin-top: 8px;
    padding-left: 40px;
}


@media (max-width: 600px) {
    .pointer-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .pointer-icon-wrapper {
        margin-right: 0;
        margin-bottom: 12px;
        width: 50px;
        height: 50px;
    }

    .pointer-number {
        font-size: 1rem;
    }

    .pointer-header {
        font-size: 1.2rem;
    }
}

.detailed-pointers-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    font-family: sans-serif;
}

.main-heading {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.pointer-block {
    /* margin-bottom: 40px; */
    padding: 20px;
    text-align: left;
}

.pointer-block h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #333;
}

.pointer-block p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
}

.pointer-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.pointer-block.center-align {
    text-align: center;
}

.center-subtext {
    text-align: center;
    font-family: 'Brush Script MT', cursive;
    font-size: 40px;
    color: #9E1B2E;
    margin-top: 30px;
}

.left-subtext {
    text-align: left;
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* Responsive - keeps layout same on all screen sizes */
@media (max-width: 600px) {
    .main-heading {
        font-size: 1.6rem;
    }

    .pointer-block h4 {
        font-size: 1.1rem;
    }

    .pointer-block p {
        font-size: 0.95rem;
    }
}

.events-section {
    padding: 2rem;
    background: #f9f9f9;
}

.events-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #333;
    font-family: Gloria Hallelujah, cursive;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.event-card {
    text-align: center;
    text-decoration: none;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(252, 255, 88, 0.863);
}

.event-title {
    font-size: 1.5rem;
    font-weight: bolder;
    color: #2c3e50;
    /* Customize header color here */
    padding: 1rem 1rem 0 1rem;
}

.event-card img {
    align-items: center;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.event-subtext {
    font-size: 0.85rem;
    color: #666;
    padding: 0.75rem 1rem 1rem 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .events-heading {
        font-size: 1.75rem;
    }

    .event-title {
        font-size: 1.1rem;
    }

    .event-subtext {
        font-size: 0.9rem;
    }
}

.highlight-header {
    background-color: #DD9774;
    padding: 0;
    margin-bottom: 3rem;
    text-align: center;
}

.highlight-header h2 {
    color: white;
    font-size: 2rem;
    margin: 0;
}

.highlight-section {
    padding: 2rem 1rem;
}

.highlight-row {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-image {
    flex: 1;
    padding-left: 30px;
    max-width: 380px;
}

.highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.highlight-image h3 {
    text-align: center;
}

.highlight-content {
    flex: 1;
    min-width: 280px;
}

.highlight-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #222;
}

.highlight-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .highlight-row {
        flex-direction: column;
        text-align: left;
    }

    .highlight-content h3 {
        font-size: 1.25rem;
    }

    .highlight-content p {
        font-size: 0.95rem;
    }
}

.custom-section {
    padding: 2rem 1rem;
    font-family: 'Arial', sans-serif;
    max-width: 1200px;
    margin: auto;
    background-color: #F4F1E8;
}

.section-block {
    margin-bottom: 3rem;
}

.section-block h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.section-block p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.dual-column {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.dual-column .column {
    flex: 1;
    min-width: 280px;
}

.dual-column .image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.custom-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #fd1616;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #B60D0D;
    transform: scale(1.05);
    text-decoration: none;
}

.custom-pointers {
    padding-left: 1.2rem;
}

.custom-pointers li {
    margin-bottom: 0.5rem;
    list-style: disc;
    color: #444;
}

.btn-center {
    text-align: center;
}

.closing-note {
    text-align: center;
    font-family: "Brush Script MT", cursive;
    font-size: 2.5rem;
    color: #ff1414;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dual-column {
        flex-direction: column;
        text-align: center;
    }

    .left,
    .center {
        text-align: center;
    }

    .custom-pointers {
        text-align: left;
        margin: 0 auto;
        display: inline-block;
    }

    .btn-center {
        margin-top: 1rem;
    }
}