*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI",Arial,sans-serif;
    background:#0d1f57;
    background:
        radial-gradient(circle at top right,
        rgba(255,255,255,0.08),
        transparent 40%),
        linear-gradient(135deg,#08153f,#0d1f57,#132d7a);
    color:#ffffff;
    min-height:100vh;
}

.background-overlay{
    position:fixed;
    top:0;
    right:0;
    width:700px;
    height:700px;
    background:
        radial-gradient(circle,
        rgba(255,255,255,0.05),
        transparent 70%);
    pointer-events:none;
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:60px 30px;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero{
    width:100%;
}

.brand-row{
    display:flex;
    align-items:center;
    gap:35px;
    margin-bottom:70px;
}

.logo{
    width:220px;
    height:auto;
    flex-shrink:0;
}

.brand-text h1{
    font-size:72px;
    font-weight:800;
    letter-spacing:4px;
    line-height:1;
    margin-bottom:15px;
}

.tagline{
    font-size:16px;
    letter-spacing:5px;
    color:#d7def5;
    text-transform:uppercase;
}

.content h2{
    font-size:42px;
    margin-bottom:25px;
}

.content > p{
    max-width:850px;
    font-size:20px;
    line-height:1.8;
    color:#e5e9ff;
    margin-bottom:50px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.10);
    backdrop-filter:blur(10px);
    border-radius:16px;
    padding:25px;
}

.card span{
    display:block;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#a8b7e8;
    margin-bottom:12px;
}

.card strong,
.card a,
.card p{
    display:block;
    color:#fff;
    text-decoration:none;
    line-height:1.8;
}

.address-card{
    grid-column:span 2;
}

.cta{
    margin-top:50px;
}

.cta a{
    display:inline-block;
    background:#ffffff;
    color:#0d1f57;
    text-decoration:none;
    padding:18px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.cta a:hover{
    transform:translateY(-3px);
}

footer{
    margin-top:60px;
    color:#b5c0e7;
    font-size:14px;
}

@media(max-width:768px){

    .brand-row{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .logo{
        width:90px;
    }

    .brand-text h1{
        font-size:42px;
    }

    .tagline{
        font-size:13px;
        letter-spacing:2px;
    }

    .content h2{
        font-size:30px;
    }

    .content > p{
        font-size:17px;
    }

    .address-card{
        grid-column:span 1;
    }
}