.hero-section{

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:80px 20px;

    background:
    linear-gradient(
        135deg,
        #00153b 0%,
        #002b72 50%,
        #0a4fc9 100%
    );

}

.hero-content{

    max-width:900px;

    text-align:center;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    padding:60px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);

}

.hero-content h1{

    font-size:64px;

    color:white;

    margin-bottom:25px;

    font-weight:700;

}

.hero-content p{

    color:rgba(255,255,255,.85);

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:260px;
    height:60px;

    background:white;

    color:#0a4fc9;

    border-radius:16px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    transition:.3s;

}

.hero-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 30px rgba(255,255,255,.2);

}

@media (max-width: 992px){

    .hero-content{

        padding:50px 40px;

    }

    .hero-content h1{

        font-size:48px;

    }

    .hero-content p{

        font-size:18px;

    }

}

@media (max-width: 768px){

    .hero-section{

        padding:40px 15px;

    }

    .hero-content{

        padding:40px 25px;

        border-radius:24px;

    }

    .hero-content h1{

        font-size:36px;

        line-height:1.2;

        margin-bottom:20px;

    }

    .hero-content p{

        font-size:16px;

        line-height:1.7;

        margin-bottom:30px;

    }

    .hero-btn{

        width:100%;

        max-width:320px;

        height:54px;

        font-size:16px;

    }

}

@media (max-width: 480px){

    .hero-section{

        min-height:auto;

        padding:30px 12px;

    }

    .hero-content{

        padding:30px 20px;

        border-radius:20px;

    }

    .hero-content h1{

        font-size:28px;

    }

    .hero-content p{

        font-size:15px;

        line-height:1.6;

    }

    .hero-btn{

        width:100%;

        height:50px;

        font-size:15px;

    }

}