/* General Body Styles */
body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background-color: #fdf8f5; /* A soft, warm off-white */
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.container {
    width: 85%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    font-weight: 400;
    color: #4a4a4a;
}

h1 { font-size: 3em; }
h2 { font-size: 2.2em; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.5em; color: #d15c71; } /* Accent color */

/* Header & Navigation */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 1.5em;
    color: #d15c71; /* Primary brand color */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #d15c71;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://images.unsplash.com/photo-1518972498282-b87efa3507b7?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    text-align: center;
    padding: 80px 0;
    color: #4a4a4a;
}

#hero h1 {
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    background-color: #d15c71;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 1.1em;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(209, 92, 113, 0.4);
    display: inline-block;
}

.cta-button:hover {
    background-color: #b34a5d;
    transform: translateY(-3px);
}

/* Content Sections */
section {
    padding: 60px 0;
}

#about {
    background: white;
    text-align: center;
}

#curriculum {
    background-color: #fdf8f5;
}

.course-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.module {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

#enroll {
    text-align: center;
    background: #4a4a4a;
    color: white;
}

#enroll h2 {
    color: white;
}

/* Footer */
footer {
    background: #f1f1f1;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer p {
    margin: 0;
}
