:root {
    --primary: #e63946;
    --secondary: #1d3557;
    --accent: #f1faee;
    --dark: #1d3557;
    --light: #f1faee;
    --text: #293241;
    --scout-green: #006633;
}

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

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

nav {
    background-color: var(--dark);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
}

.scout-header {
    height: 400px;
    background: linear-gradient(rgba(0, 102, 51, 0.8), rgba(0, 102, 51, 0.7)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjUwMCI+PHJlY3Qgd2lkdGg9IjEwMDAiIGhlaWdodD0iNTAwIiBmaWxsPSIjMDA2NjMzIi8+PHBhdGggZD0iTTAgNTAwIEw1MDAgMzUwIEwxMDAwIDUwMCBMNTAwIDQwMCBaIiBmaWxsPSIjMDAzMzE5Ii8+PHBhdGggZD0iTTAgMCBMMTAwMCAwIEwxMDAwIDIwMCBMNTAwIDMwMCBMMCAxNTAgWiIgZmlsbD0iIzAwOTkzMyIgZmlsbC1vcGFjaXR5PSIwLjMiLz48Y2lyY2xlIGN4PSI1MDAiIGN5PSIyMDAiIHI9IjUwIiBmaWxsPSIjZmZmZmZmIiBmaWxsLW9wYWNpdHk9IjAuMiIvPjwvc3ZnPg==');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    margin-top: 60px;
}

.scout-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.scout-header p {
    max-width: 700px;
    font-size: 1.2rem;
}

.scout-badge {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    position: relative;
}

.scout-badge::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: var(--scout-green);
    border-radius: 50%;
    z-index: -1;
}

.scout-badge i {
    font-size: 5rem;
    color: white;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--scout-green);
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #ddd;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 1rem 0;
    position: relative;
}

.timeline-item::after {
    content: '';
    display: table;
    clear: both;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 5px -5px 5px rgba(0,0,0,0.05);
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: -5px 5px 5px rgba(0,0,0,0.05);
}

.timeline-date {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--scout-green);
    color: white;
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    z-index: 1;
}

.timeline-title {
    margin-bottom: 1rem;
    color: var(--scout-green);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
}

.skill-icon {
    width: 70px;
    height: 70px;
    background-color: var(--scout-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.skill-icon i {
    font-size: 2rem;
    color: white;
}

.skill-card h3 {
    margin-bottom: 1rem;
    color: var(--scout-green);
}

.quote-section {
    background-color: var(--scout-green);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.quote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-style: italic;
    position: relative;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 4rem;
    line-height: 0;
    position: relative;
}

.quote-author {
    margin-top: 2rem;
    font-size: 1.2rem;
}

footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .journey-timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        float: right !important;
        margin-left: 80px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
        box-shadow: -5px 5px 5px rgba(0,0,0,0.05);
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background-color: var(--dark);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .mobile-menu {
        display: block;
    }
    
    .scout-header h1 {
        font-size: 2.5rem;
    }
}