/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-badge {
    display: inline-block;
    background: rgba(12, 77, 162, 0.08);
    color: #0C4DA2;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-badge i {
    margin-right: 6px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.section-title {
    font-size: 2.2rem;
    color: #0C4DA2;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-light {
    color: #fff;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0C4DA2, #00B4D8);
    margin: 0 auto;
    border-radius: 2px;
}

.title-divider-light {
    background: linear-gradient(90deg, #48CAE4, #fff);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #0C4DA2, #00B4D8);
    color: #fff;
    box-shadow: 0 4px 15px rgba(12, 77, 162, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(12, 77, 162, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: linear-gradient(135deg, #0C4DA2, #0a3d82);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(12, 77, 162, 0.3);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.logo-icon {
    font-size: 1.6rem;
    color: #48CAE4;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(12, 77, 162, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 100;
    border-top: 3px solid #00B4D8;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #444;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu a i {
    margin-right: 10px;
    color: #00B4D8;
    width: 18px;
    text-align: center;
}

.dropdown-menu a:hover {
    background: #F0F8FF;
    color: #0C4DA2;
    padding-left: 25px;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(160deg, #0a3d82 0%, #0C4DA2 30%, #0077B6 60%, #00B4D8 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(72, 202, 228, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
}

/* Water drops animation */
.water-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.drop {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), rgba(72,202,228,0.15));
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: dropFall linear infinite;
    opacity: 0;
}

.drop-1 { left: 10%; width: 14px; height: 14px; animation-duration: 8s; animation-delay: 0s; }
.drop-2 { left: 25%; width: 10px; height: 10px; animation-duration: 10s; animation-delay: 2s; }
.drop-3 { left: 55%; width: 18px; height: 18px; animation-duration: 7s; animation-delay: 4s; }
.drop-4 { left: 75%; width: 12px; height: 12px; animation-duration: 9s; animation-delay: 1s; }
.drop-5 { left: 90%; width: 16px; height: 16px; animation-duration: 11s; animation-delay: 3s; }

@keyframes dropFall {
    0%   { top: -5%; opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.4; }
    100% { top: 100%; opacity: 0; }
}

/* Waves */
.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
}

.waves {
    width: 100%;
    height: 100%;
}

.wave-parallax > use {
    animation: waveMove 20s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.wave-parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 8s; }
.wave-parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 12s; }
.wave-parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 16s; }
.wave-parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 24s; }

@keyframes waveMove {
    0%   { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.hero-logo {
    margin-bottom: 25px;
}

.hero-logo-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(72, 202, 228, 0.3); }
    50%      { box-shadow: 0 0 0 20px rgba(72, 202, 228, 0); }
}

.hero-logo-icon {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 0 15px rgba(72, 202, 228, 0.5));
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #48CAE4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== ABOUT ========== */
.about {
    background: #fff;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, #F0F8FF, #e0f0ff);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-text strong {
    color: #0C4DA2;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #F0F8FF;
    border-radius: 12px;
    border: 1px solid #e0f0ff;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(12, 77, 162, 0.1);
    border-color: #00B4D8;
}

.about-feature i {
    font-size: 1.4rem;
    color: #00B4D8;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0C4DA2;
}

/* ========== METRICS ========== */
.metrics {
    background: #F0F8FF;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.metric-item {
    text-align: center;
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(12, 77, 162, 0.06);
    border: 1px solid #e0f0ff;
}

.metric-icon {
    font-size: 2.5rem;
    color: #00B4D8;
    margin-bottom: 15px;
}

.metric-label {
    font-size: 1.05rem;
    color: #0C4DA2;
    margin-bottom: 18px;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 26px;
    background: #e0f0ff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0C4DA2, #00B4D8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    width: 0%;
    transition: width 1.5s ease-in-out;
}

/* ========== ADVANTAGES / SERVICES ========== */
.advantages {
    background: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e0f0ff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0C4DA2, #00B4D8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(12, 77, 162, 0.12);
    border-color: transparent;
}

.advantage-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #0C4DA2, #00B4D8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    color: #fff;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 25px rgba(12, 77, 162, 0.25);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-card h3 {
    font-size: 1.15rem;
    color: #0C4DA2;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 0.93rem;
    color: #666;
    line-height: 1.7;
}

/* ========== FAQ ========== */
.faq {
    background: linear-gradient(160deg, #0a3d82 0%, #0C4DA2 40%, #0077B6 100%);
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(72, 202, 228, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(0, 180, 216, 0.08) 0%, transparent 50%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    color: #48CAE4;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========== CONTACT ========== */
.contact {
    background: #F0F8FF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    padding: 10px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0C4DA2, #00B4D8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrap i {
    font-size: 1.1rem;
    color: #fff;
}

.contact-item h4 {
    font-size: 1rem;
    color: #0C4DA2;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.95rem;
    color: #555;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-facebook { background: #3B5998; }
.social-twitter { background: #1DA1F2; }
.social-instagram { background: linear-gradient(135deg, #E4405F, #C13584, #833AB4); }

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(12, 77, 162, 0.08);
    border: 1px solid #e0f0ff;
}

.form-title {
    font-size: 1.2rem;
    color: #0C4DA2;
    margin-bottom: 25px;
}

.form-title i {
    margin-right: 8px;
    color: #00B4D8;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0f0ff;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    background: #F9FCFF;
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
    color: #777;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230C4DA2' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #00B4D8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* ========== FOOTER ========== */
.footer {
    background: #0A1628;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-brand h3 i {
    margin-right: 8px;
    color: #00B4D8;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00B4D8, #48CAE4);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a i {
    font-size: 0.75rem;
    color: #00B4D8;
}

.footer-links ul li a:hover {
    color: #48CAE4;
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
    color: #00B4D8;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
        margin: 0 auto;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-bg {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #0C4DA2, #0a3d82);
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .navbar.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 5px;
    }

    .nav-link {
        width: 100%;
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .dropdown.open .dropdown-menu {
        max-height: 400px;
        padding: 5px 0;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
    }

    .dropdown-menu a i {
        color: #48CAE4;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-logo-circle {
        width: 85px;
        height: 85px;
    }

    .hero-logo-icon {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 70px 0;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .waves-container {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .section {
        padding: 60px 0;
    }

    .advantage-card {
        padding: 30px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
