Hero section */
.hero {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    background: none;
    box-shadow: none;
    overflow: hidden;
    width: 100%;
}


.hero-button {
    width: 100%;
    max-width: 1200px;
    display: block;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Download button styles */
.cta-container {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    z-index: 10;
}

.promo-text {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0.8), rgba(255,255,255,1));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s ease-in-out infinite;
    position: relative;
    padding: 5px 0;
}

.promo-text::after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    animation: slideLine 5s ease-in-out infinite;
}

@keyframes shine {
    0% {
        background-position: -100% 50%;
    }
    50% {
        background-position: 200% 50%;
    }
    100% {
        background-position: -100% 50%;
    }
}

@keyframes slideLine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.download-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #19245b;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(25,36,91,0.15);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.download-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25,36,91,0.2);
}

.download-btn i {
    font-size: 16px;
}

/* Contact section styles */
.contact-links {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: baseline;
    font-size: 1.1rem;
}

.contact-label {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 90px;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #1558a3;
    text-decoration: underline;
}

/* Tablet devices */
@media (max-width: 1024px) {

    .cta-container {
        right: 8%;
    }

    .promo-text {
        font-size: 24px;
    }

    .download-btn {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .hero {
        width: 100%;
        padding: 0;
        max-width: 100%;
    }

    .hero-button {
        max-width: 100%;
    }


    .cta-container {
        right: 5%;
        gap: 8px;
    }

    .promo-text {
        font-size: 20px;
        animation: none;
        background: none;
        -webkit-text-fill-color: #fff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .promo-text::after {
        display: none;
    }

    .download-btn {
        padding: 7px 14px;
        font-size: 0.95rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.3em;
        font-size: 1rem;
    }

    .contact-label {
        min-width: auto;
    }

    .guide-steps {
        margin-top: 1em;
    }

    .guide-step {
        margin-bottom: 1.5em;
    }

    .step-header {
        gap: 0.8em;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .step-text {
        font-size: 0.95rem;
        min-height: 24px;
    }

    .guide-link {
        padding: 12px;
    }
    
    .guide-link i {
        font-size: 1em;
        margin-right: 10px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
  
    .cta-container {
        right: 32%;
        transform: translate(50%, -50%);
        align-items: center;
        gap: 6px;
    }

    .promo-text {
        font-size: 18px;
        text-align: center;
    }

    .download-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .contact-item {
        font-size: 0.95rem;
    }

    .guide-steps {
        gap: 0.4em;
    }

    .guide-step {
        gap: 0.6em;
    }

    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }

    .step-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

}

.hero .main-title {
    color: #fff;
    margin-bottom: 0.3em;
}
.hero .section-subtitle {
    color: #e0e6f7;
    font-size: 1.2rem;
}
.cta-btn {
    background: #ffb300;
    color: #19245b;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 0.9em 2.2em;
    font-size: 1.1rem;
    margin-top: 1.2em;
    box-shadow: 0 2px 8px rgba(25,36,91,0.08);
    transition: background 0.2s;
    cursor: pointer;
}
.cta-btn:hover {
    background: #ffd54f;
}
.adv-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
    margin: 1.5em 0 0 0;
    padding: 0;
    list-style: none;
}
.adv-list li {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(44,73,100,0.07);
    padding: 1em 1.2em;
    flex: 1 1 220px;
    min-width: 180px;
    font-size: 1.05rem;
    color: #19245b;
    display: flex;
    align-items: center;
    gap: 0.7em;
}

/* Guide steps styles */
.guide-steps {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5em;
}

.guide-step {
    width: 100%;
    margin-bottom: 1em;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-color);
    line-height: 1.5;
    display: flex;
    align-items: center;
    min-height: 28px;
}

.step-content {
    width: 100%;
}


.step-content .section-image2 {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.guide-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.guide-link {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.guide-link:hover {
    background-color: #e9ecef;
    transform: translateX(10px);
}

.guide-link i {
    margin-right: 15px;
    font-size: 1.2em;
    color: #0056b3;
} 