:root {
    /* Color Palette - Pink/Rose Theme */
    --primary: #db2777; /* Rose 600 */
    --primary-light: #fbcfe8; /* Rose 200 */
    --primary-lighter: #fce7f3; /* Rose 100 */
    --primary-dark: #be185d; /* Rose 700 */
    --accent: #f43f5e; /* Rose 500 */
    
    --bg-page: #fdf2f8; /* Rose 50 */
    --bg-surface: #ffffff;
    
    --text-main: #1f2937; /* Gray 800 */
    --text-muted: #4b5563; /* Gray 600 */
    --text-light: #9ca3af; /* Gray 400 */
    
    --border: #fce7f3;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(db 39 119 / 0.1), 0 2px 4px -2px rgb(db 39 119 / 0.1);
    --shadow-lg: 0 10px 25px -5px rgb(db 39 119 / 0.15), 0 8px 10px -6px rgb(db 39 119 / 0.1);
    --shadow-glow: 0 0 30px -5px rgb(219 39 119 / 0.3);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Base Buttons & Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-lighter);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 6rem 0 8rem;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
}

.shape-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background-color: var(--primary-light);
    animation: float 8s ease-in-out infinite alternate;
}

.shape-2 {
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-color: #fca5a5; /* slight peach tone for contrast */
    animation: float 10s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- About Section --- */
.about-section {
    padding: 5rem 0;
    background-color: var(--bg-surface);
    position: relative;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.features-list li:hover {
    background-color: var(--bg-page);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-lighter);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-text span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Illustration Card Styling */
.illustration-card {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    object-fit: cover;
    border: 4px solid white;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 2;
}

.badge-1 {
    top: 10%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation: float 7s ease-in-out infinite reverse;
}

/* --- Resources Section --- */
.resources-section {
    padding: 6rem 0;
    background-color: var(--bg-page);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(251, 207, 232, 0.5); /* subtle border */
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.resource-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.card-icon.pdf {
    background-color: #fee2e2;
    color: #ef4444;
}

.card-icon.img {
    background-color: var(--primary-lighter);
    color: var(--primary);
}

.card-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.resource-card:hover .card-action {
    color: var(--primary-dark);
}

.card-action i {
    transition: transform 0.3s ease;
}

.resource-card:hover .card-action i {
    transform: translateX(4px);
}

/* --- Footer --- */
footer {
    background-color: var(--bg-surface);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--primary);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .illustration-card {
        margin: 2rem auto 0;
        max-width: 90%;
    }
    .badge-1 { 
        left: 5%; 
        top: -15px;
    }
    .badge-2 { 
        right: 5%; 
        bottom: -15px;
    }
}
