@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.price-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.price-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d6efd;
}

.price-currency {
    font-size: 1rem;
    position: relative;
    top: -15px;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: #ffc107;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),  center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.story-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section {
    padding: 80px 0;
}

.team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-img-container {
    height: 250px;
    overflow: hidden;
}

.team-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.value-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    background-color: white;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0d6efd;
}

.timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #0d6efd;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-container {
    position: relative;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
    margin-bottom: 50px;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 55%;
}

.timeline-container::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid #0d6efd;
    border-radius: 50%;
    top: 30px;
    z-index: 1;
}

.timeline-left::before {
    right: -10px;
}

.timeline-right::before {
    left: -10px;
}

.cta-section {
    padding: 100px 0;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .timeline-right,
    .timeline-left {
        left: 0;
    }

    .timeline-container::before {
        left: 21px;
    }

    .timeline-left::before,
    .timeline-right::before {
        left: 21px;
    }
}

.contact-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.form-header {
    margin-bottom: 30px;
    color: #0d6efd;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.success-message h3 {
    margin-bottom: 15px;
}

.field-icon {
    color: #0d6efd;
    width: 25px;
    text-align: center;
    margin-right: 10px;
}