/* Base Styles */
:root {
    --primary-color: #C7CEEA; /* Pastel blue */
    --secondary-color: #FEE1E8; /* Pastel pink */
    --accent-color: #D4F0F0; /* Pastel mint */
    --text-dark: #6B7280; /* Soft gray for text */
    --text-light: #9CA3AF; /* Lighter gray for secondary text */
    --background: #FFFFFF; /* White background */
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

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

a {
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Header & Navigation */
header {
    padding: 40px 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

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

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 40px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: var(--text-dark);
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

.button.secondary {
    background-color: var(--secondary-color);
}

.button i {
    margin-right: 8px;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .button {
        width: 100%;
    }
}