* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Monaco', monospace;
    line-height: 1.8;
    color: #3a3a3a;
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f1eb 50%, #e8e0d6 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 2rem 0;
}

.timeline-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-header {
    background: linear-gradient(135deg, #8b6f47 0%, #a0826d 50%, #b89f8a 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.3);
    margin-bottom: 3rem;
    text-align: center;
    border: 3px solid #6b5438;
    position: relative;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.timeline-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.date {
    color: #f0e8df;
    font-style: italic;
    font-size: 1rem;
}

.timeline-intro {
    margin-bottom: 3rem;
}

.intro-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.15);
    border: 3px solid #8b6f47;
    border-left: 8px solid #8b6f47;
}

.intro-block p {
    font-size: 1.15rem;
    color: #3a3a3a;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

.intro-block strong {
    color: #8b6f47;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #8b6f47 0%, #a0826d 50%, #b89f8a 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 0;
    width: 24px;
    height: 24px;
    background: #8b6f47;
    border: 4px solid #f8f6f3;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #8b6f47, 0 0 0 8px #f8f6f3;
    z-index: 2;
}

.timeline-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.15);
    border: 2px solid #e8e0d6;
    border-left: 6px solid #8b6f47;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.25);
    border-left-color: #6b5438;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8e0d6;
}

.item-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b6f47 0%, #a0826d 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(139, 111, 71, 0.3);
    flex-shrink: 0;
}

.content-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b6f47;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.9;
    color: #444;
    font-size: 1.05rem;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-column {
    background: #f5f1eb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e8e0d6;
}

.info-column p {
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

.info-column strong {
    color: #8b6f47;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.8rem;
}

.timeline-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.timeline-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
    color: #444;
}

.timeline-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-size: 0.8rem;
}

.warning-box {
    background: #f5f1eb;
    border: 2px solid #8b6f47;
    border-left: 6px solid #8b6f47;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 8px;
}

.warning-box p {
    margin: 0;
    color: #6b5438;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-block {
    background: #f5f1eb;
    border: 2px solid #8b6f47;
    padding: 2rem;
    margin-top: 1.5rem;
    border-radius: 8px;
}

.contact-block p {
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.contact-block strong {
    color: #8b6f47;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 1rem;
}

.form-feedback {
    margin: 1.5rem 0;
    padding: 1.2rem 1.4rem;
    border-radius: 8px;
    border: 2px solid transparent;
    background: #f5f1eb;
    color: #5a452d;
    font-weight: 600;
}

.form-feedback.success {
    border-color: #2e7d32;
    background: #e7f3e7;
    color: #1f5d22;
}

.form-feedback.error {
    border-color: #c0392b;
    background: #fde2de;
    color: #8c2a1f;
}

.form-feedback ul {
    margin: 0.8rem 0 0 1.4rem;
}

.privacy-form {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-row label {
    font-weight: 700;
    color: #6b5438;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-row input,
.form-row textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #d5c6b5;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    color: #3a3a3a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #8b6f47;
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.2);
}

.form-submit {
    justify-self: flex-start;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #8b6f47 0%, #a0826d 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 111, 71, 0.3);
}

.form-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

@media (max-width: 768px) {
    .timeline-wrapper {
        padding: 0 1rem;
    }
    
    .timeline-header {
        padding: 2rem 1.5rem;
    }
    
    .timeline-header h1 {
        font-size: 2rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 8px;
        width: 20px;
        height: 20px;
    }
    
    .timeline-content {
        padding: 2rem 1.5rem;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .content-header h2 {
        font-size: 1.5rem;
    }
    
    .info-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
