:root {
    --primary-color: #6C5B7B;
    --secondary-color: #C06C84;
    --accent-color: #F67280;
    --background-color: #F8B195;
    --text-color: #2C3E50;
}

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.png') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero .subtitle {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.section {
    padding: 80px 0;
    background-color: white;
    margin: 20px 0;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    top: 20px;
    right: -10px;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.contact-list {
    list-style: none;
    padding: 0;
    max-width: 300px;
    margin: 0 auto;
}

.contact-list li {
    padding: 10px;
    margin: 10px 0;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    text-align: center;
}

footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}
