/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f6e6ff;
    color: #4a148c;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header Styling (Perfect Match to Image) */
header {
    background-color: #d1a9ff;  /* Soft lavender */
    padding: 20px;
    color: #4a148c;
    font-size: 1.2em;  /* Reduced to match the image */
    font-weight: bold;
    border-radius: 20px;
    width: 80%;
    margin: 30px auto;  /* Centered with space above */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Tagline inside Header */
header p {
    font-size: 0.9em;  /* Smaller font for tagline */
    font-weight: normal;
    margin-top: 5px;
}

/* Section Containers */
.content-section {
    background: white;
    width: 80%;
    margin: 40px auto;  /* Increased spacing between sections */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

/* Extra spacing at the bottom of the last section */
.content-section:last-of-type {
    margin-bottom: 60px;
}

/* Headings Styling */
.content-section h2 {
    color: #4a148c; /* Darker Purple */
}

.content-section h3 {
    color: #7b1fa2; /* Lighter Purple */
}

/* Links */
a {
    color: #6200ea;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Ensures sections fade in smoothly */
.content-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

