/* Global Styles */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Header Styling */
header {
    background: #d22365; /* Primary brand color */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    margin: 0;
}

header p {
    font-size: 1.2rem;
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-size: 1rem;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffd700; /* Highlight color */
}

/* Section Styling */
section {
    padding: 40px 20px;
}

section h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #d22365;
    text-align: center;
    margin-bottom: 20px;
}

/* Paragraph Styling */
section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

/* List Styling */
section ul {
    list-style-type: disc;
    padding-left: 40px;
}

section ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Background Colors for Sections */
.bg-light {
    background-color: #fdfdfd !important;
}

.bg-primary {
    background-color: #d22365 !important;
}

.bg-dark {
    background-color: #333 !important;
}

/* Text Colors */
.text-primary {
    color: #d22365 !important;
}

.text-white {
    color: #fff !important;
}

/* Footer Styling */
footer {
    padding: 20px;
    background: #333;
    color: #fff;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section p,
    section ul li {
        font-size: 1rem;
    }
}