:root {
    --primary-color: #138F2F;
    --secondary-color: #F4F4F4;
    --accent-color: #BFBFBF;
    --light-bg: #fff;
    --text-color: #333;
    --legal-bg: #f0f7fd;
}

main {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    margin-top: 5rem;
}

h1 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.intro-section {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--secondary-color);
}

.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 100px;
    z-index: 2;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(162, 159, 159, 0.2);
    border: 5px solid white;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    border-top: 3px solid var(--secondary-color);
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}

.legal-section {
    background-color: var(--legal-bg);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.legal-section:before {
    content: '⚖️';
    position: absolute;
    font-size: 100px;
    right: 20px;
    top: 20px;
    opacity: 0.1;
    z-index: 0;
}

.legal-article {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.legal-article strong {
    color: var(--primary-color);
    font-size: 1.1em;
}

.location-change {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.location-change:before {
    content: '📍';
    position: absolute;
    font-size: 80px;
    right: 20px;
    bottom: 10px;
    opacity: 0.1;
}

.highlight {
    background-color: rgba(231, 76, 60, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 4px solid var(--accent-color);
}

@media (max-width: 768px) {
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-date {
        width: 60px;
        height: 60px;
        font-size: 0.9em;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-content:before {
        left: -15px;
        top: 20px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid white;
    }
}