* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Verdana', 'Geneva', sans-serif;
    line-height: 1.7;
    color: #1a3a52;
    background: linear-gradient(135deg, #e0f7ff 0%, #b3e5fc 50%, #81d4fa 100%);
    min-height: 100vh;
    background-attachment: fixed;
}

.site-header {
    background: linear-gradient(135deg, #003d66 0%, #0052a3 50%, #0066cc 100%);
    color: #ffffff;
    padding: 3rem 0;
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
    border-bottom: 5px solid #002244;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.site-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.site-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

.intro-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 61, 102, 0.7), rgba(0, 102, 204, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
    color: #ffffff;
}

.banner-overlay h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-overlay p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.block-image-left,
.block-image-right {
    flex: 1;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.block-image-left img,
.block-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-block:hover .block-image-left img,
.content-block:hover .block-image-right img {
    transform: scale(1.05);
}

.block-content-left,
.block-content-right {
    flex: 1;
}

.content-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #003d66;
    margin-bottom: 1.5rem;
}

.content-text p {
    color: #1a3a52;
    line-height: 1.8;
    font-size: 1.1rem;
}

.routes-section {
    margin: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #003d66;
    margin-bottom: 0.5rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

.route-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.route-entry {
    display: flex;
    gap: 2rem;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-wrap: wrap;
}

.route-entry:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 102, 204, 0.2);
}

.route-image {
    flex: 1 1 300px;
    min-width: 300px;
    height: 300px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-entry:hover .route-image img {
    transform: scale(1.1);
}

.route-info {
    flex: 1 1 300px;
    min-width: 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.route-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003d66;
    margin-bottom: 1rem;
}

.route-info p {
    color: #1a3a52;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.route-details {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.route-details li {
    background: #e0f2f7;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    color: #003d66;
    font-weight: 600;
}

.benefits-section {
    margin: 4rem 0;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #0066cc;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003d66;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #1a3a52;
    line-height: 1.8;
}

.contact-section {
    margin: 4rem 0;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e0f2f7;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #0066cc;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.contact-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003d66;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #1a3a52;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.site-footer {
    background: #003d66;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-item p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-item a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }
    
    .banner-overlay h2 {
        font-size: 2rem;
    }
    
    .content-block {
        flex-direction: column;
    }
    
    .content-block.reverse {
        flex-direction: column;
    }
    
    .block-image-left,
    .block-image-right {
        width: 100%;
    }
    
    .route-entry {
        flex-direction: column;
    }
    
    .route-image {
        width: 100%;
        min-width: 100%;
        flex: 1 1 100%;
    }
    
    .route-info {
        width: 100%;
        min-width: 100%;
        flex: 1 1 100%;
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .contact-list {
        grid-template-columns: 1fr;
    }
}
