:root {
    --primary-black: #1a1a1a;
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --white: #ffffff;
    --transition-speed: 0.3s;
}

/* Header Styles */
header {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-black);
    margin-bottom: 2rem;
    color: var(--white);
}

header h1 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

header p {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

/* Objectives Section Styles */
.objectives-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.objective-card {
    background-color: var(--primary-black);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    transition: transform var(--transition-speed);
    border: 1px solid var(--primary-gold);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
}

.objective-card h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.objective-card p {
    color: var(--white);
    line-height: 1.6;
}

/* Timeline Section Styles */
.timeline {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
}

.timeline h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 2rem;
    height: 2px;
    background-color: #4CAF50;
}

.timeline-item h3 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .objectives-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .timeline {
        padding: 1rem;
    }

    .timeline-item {
        padding: 1.5rem;
    }

    .timeline-item::before {
        display: none;
    }
}
