    body {
        margin: 0;
        font-family: 'PT Sans', sans-serif;
        background-color: #fafafa;
        color: #555;
        overflow-x: hidden;
    }

    /* ---------- HERO ---------- */
    .hero {
        position: relative;
        height: 50vh;
        width: 100%;
        background: url('https://cdn.pixabay.com/photo/2020/06/09/15/32/camp-5278843_640.png') no-repeat center center/cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        overflow: hidden;
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        animation: fadeInDown 2s ease forwards;
        text-transform: uppercase;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        line-height: 1.6;
        animation: fadeInUp 2s ease forwards;
    }

    /* ---------- Content Section ---------- */
    .content {
        padding: 4rem 10%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    /* ---------- Card Styles ---------- */
    .card {
        width: 100%;
        max-width: 1000px;
        display: flex;
        flex-direction: row; /* Desktop: image left, text right */
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.078);
        overflow: hidden;
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.4s ease;
    }

    .card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        cursor: pointer;
    }

    .card img {
        width: 300px; /* Portrait on desktop */
        object-fit: cover;
        border-radius: 20px 0 0 20px;
    }

    .card-content {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .card-content h2 {
        color: #ff9800;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
    }

    .card-content h3 {
        color: #ff9800;
        font-size: 1rem;
        margin-bottom: 1rem;
        font-weight: 500;
        text-transform: uppercase;
    }

    .card-content p {
        line-height: 1.6;
        font-size: 1rem;
        color: #555;
    }

    /*Founder's css code*/
    #founder {
        text-decoration: none;
        color: #555
    }

    /* ---------- Animations ---------- */
    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-50px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(50px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1024px) {
        .card {
            flex-direction: column; /* Stack on smaller screens */
        }
        .card img {
            width: 100%;
            height: 200px;
            border-radius: 20px 20px 0 0; /* Top rounded corners */
        }
        .card-content {
            padding: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .hero p { font-size: 1rem; }
        .content { padding: 2rem 5%; }
    }
