/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

/* Custom Colors */
.text-pink {
    color: #f472b6 !important;
}
.text-pink:hover {
    color: #e04ba0 !important;
}
.btn-pink {
    background-color: #f472b6;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}
.btn-pink:hover {
    background-color: #e04ba0;
}

/* Navigation */
.navbar-dark .navbar-nav .nav-link {
    color: white;
    transition: color 0.3s ease;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: #f472b6;
}
.navbar-brand img {
    transition: transform 0.3s ease;
}
.navbar-brand img:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
}
.hero-section img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: #f472b6;
    color: white;
}
.accordion-button:focus {
    box-shadow: none;
}

/* Footer */
.footer a {
    transition: color 0.3s ease;
}

/* Mobile-Specific Styles */
@media (max-width: 576px) {
    .hero-section {
        height: 300px;
    }
    .hero-section h1 {
        font-size: 1.8rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .navbar-brand img {
        height: 30px;
    }
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    .card-img-top {
        height: 150px;
    }
    .section-heading {
        font-size: 1.5rem;
    }
    .content-section p {
        font-size: 0.85rem;
    }
    .footer p {
        font-size: 0.8rem;
    }
    .accordion-button {
        font-size: 0.9rem;
    }
    .accordion-body {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .card-img-top {
        height: 180px;
    }
}