/* Hero Section Block Styles */

.hero-section p, .hero-section  h1,  .hero-section h2 {
    margin: 0 ;
    padding: 0 ;
}

.hero-section {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: auto;
    padding: 40px;
    box-sizing: border-box;
}

.hero-section .container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

/* Left Section */
.hero-section .container .left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section .container .left-section .main-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 1rem !important;
    
}

.hero-section .container .left-section .subtitle {
    color: #3a96e0;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem !important;
}

.hero-section .container .left-section .description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-section .container .left-section .action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hero-section .container .left-section .action-buttons .action-btn {
    background: #03467d;
    color: white;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-section .container .left-section .action-buttons .action-btn:hover {
    background: #357bce;
    transform: translateY(-1px);
    color: white;
}

/* Right Section */
.hero-section .container .right-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section .container .right-section .right-section-wrapper {
    background: white;
    width: 100%;
    height: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
}

.offer-title {
    font-size: 44px;
    color:#3a96e0;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px !important;
    line-height: 1.2;
}

.offer-subtitle {
    font-size: 18px;
    color: #878787;
    text-align: center;
    margin-bottom: 18px !important;
}

/* CTA Button */
.right-section .right-section-wrapper .cta-button {
    background: #03467d;
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.right-section .right-section-wrapper .cta-button:hover {
    background: #357bce;
    color: white;
    transform: translateY(-1px);
}

.right-section .right-section-wrapper .cta-image img {
    max-height: 250px;
    margin-bottom: 18px !important;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-section .container {
        grid-template-columns: 1fr;
    }

    .hero-section .container .left-section.main-title {
        font-size: 2.5rem;
    }

    .hero-section .container .left-section .action-buttons {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

@media (max-width: 640px) {
    .hero-section .container .left-section .main-title {
        font-size: 2rem;
    }
}