*{
    margin: 0;
    padding: 0;
    font-family: 'Archivo Black', sans-serif;
} 
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),url(assets/png/banner.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 10px;
    font-size: 14px;
    color: #fff;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #cba169;
    background: #cba169;
    transition: .5s;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
}

.cta-section {
    display: flex;              /* use flexbox */
    justify-content: center;    /* center horizontally */
    align-items: center;        /* center vertically if section has height */
    gap: 20px;                  /* space between buttons */
    padding: 70px 0;            /* breathing room */

}

@media (max-width: 600px) {
    .cta-section {
      flex-direction: column;  /* stack vertically */
      gap: 20px;
    }
}


.hero-btn2{
    display: inline-block;
    text-decoration: none;
    color: #000000;
    border: 1px solid #000000;
    padding: 12px 34px;
    font-size: 24px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn2:hover{
    border: 1px solid #cba169;
    background: #cba169;
    transition: .5s;
}


.site-footer {
    background-color: #111;
    color: #fff;
    padding: 15px 0;          /* vertical spacing */
    font-size: 14px;
    width: 100%;              /* full background */
}

.footer-container {
    max-width: 1200px;        /* match your page’s content width */
    margin: 0 auto;           /* center the container */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;          /* horizontal padding */
}

.footer-left p {
    margin: 0;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

.privacy-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

.privacy-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-section h2 {
    margin-top: 30px;
    font-size: 24px;
    color: #111;
}
