@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
    font-family:'Poppins', sans-serif;
}

:root{
    --navy:#07111f;
    --navy-2:#0b1628;
    --ash:#dfe3ea;
    --ash-2:#e8ecf1;
    --pink:#ff4f6d;
    --blue:#1f7dd1;
    --muted:#334155;
}

body{
    background:var(--ash);
    color:var(--navy);
    overflow-x:hidden;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
    padding:18px 45px;
    display:flex;
    justify-content:center;
    pointer-events:none;
}

.header-container{
    width:100%;
    max-width:1800px;
    height:105px;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-radius:28px;
    padding:0 38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 10px 35px rgba(0,0,0,0.18);
    pointer-events:auto;
}

.logo img{
    width:220px;
    display:block;
}

.navbar{
    display:flex;
    align-items:center;
    gap:42px;
}

.navbar > a,
.dropdown-toggle{
    color:#111827;
    font-size:17px;
    font-weight:600;
    transition:0.3s ease;
}

.navbar > a:hover,
.dropdown-toggle:hover{
    color:var(--pink);
}

.nav-dropdown{
    position:relative;
    padding:38px 0;
}

.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:7px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%) translateY(12px);
    width:290px;
    padding:18px;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:0.3s ease;
}

.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:13px 16px;
    color:var(--navy) !important;
    font-size:15px;
    font-weight:600;
    border-radius:14px;
    white-space:nowrap;
}

.dropdown-menu a:hover{
    background:linear-gradient(135deg,var(--pink),var(--blue));
    color:white !important;
}

.header-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    height:58px;
    padding:0 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff5c7a,#ff3d68);
    color:white;
    font-weight:700;
}

.menu-toggle{
    width:45px;
    height:45px;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    border:none;
    background:transparent;
    cursor:pointer;
    z-index:100000;
}

.menu-toggle span{
    width:28px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(90deg,var(--pink),var(--blue));
    transition:0.35s ease;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* HERO */

.terms-use-hero{
    min-height:65vh;
    padding:190px 8% 110px;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(7,17,31,0.78),rgba(7,17,31,0.88)),
    url('../images/portfolio-hero.jpg') center/cover no-repeat;
}

.terms-use-hero-content{
    max-width:900px;
}

.terms-use-hero span{
    color:var(--pink);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.terms-use-hero h1{
    color:white;
    font-size:76px;
    line-height:1.08;
    margin:22px 0;
}

.terms-use-hero p{
    color:#d0d0d0;
    font-size:21px;
    line-height:1.8;
}

/* CONTENT */

.terms-use-section{
    padding:110px 8%;
    background:var(--ash);
}

.terms-use-container{
    max-width:1100px;
    margin:0 auto;
}

.terms-use-card{
    background:white;
    padding:60px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.effective-date{
    color:var(--muted);
    margin-bottom:35px;
}

.terms-use-card h2{
    color:var(--navy);
    font-size:30px;
    margin:35px 0 14px;
}

.terms-use-card p{
    color:var(--muted);
    font-size:17px;
    line-height:1.9;
}

.terms-use-contact{
    margin-top:25px;
    padding:28px;
    border-radius:22px;
    background:var(--ash-2);
}

.terms-use-contact p{
    margin-bottom:12px;
    color:var(--navy);
    font-weight:600;
}

.terms-use-contact i{
    color:var(--pink);
    margin-right:10px;
}

/* FOOTER */

.premium-footer{
    background:linear-gradient(180deg,#050505,#09142a,#0c1f3d);
    padding:90px 8% 0;
}

.footer-container{
    width:100%;
    max-width:1500px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap:60px;
}

.footer-about img{
    width:250px;
    margin-bottom:25px;
}

.footer-about p,
.footer-links a,
.footer-contact p,
.footer-bottom p,
.footer-bottom a{
    color:#d0d0d0;
}

.footer-about p{
    max-width:360px;
    line-height:1.8;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links h3,
.footer-contact h3{
    color:white;
    font-size:26px;
    margin-bottom:25px;
}

.footer-links a{
    margin-bottom:14px;
}

.footer-links a:hover,
.footer-bottom a:hover{
    color:var(--pink);
}

.footer-contact p{
    margin-bottom:16px;
    line-height:1.7;
}

.footer-contact i{
    color:var(--pink);
    margin-right:10px;
}

.footer-bottom{
    max-width:1500px;
    margin:70px auto 0;
    padding:25px 0;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom div{
    display:flex;
    gap:20px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .terms-use-hero{
        padding:170px 30px 90px;
        text-align:center;
    }

    .terms-use-hero h1{
        font-size:48px;
    }

    .terms-use-hero p{
        font-size:17px;
    }

    .terms-use-section{
        padding:90px 30px;
    }

    .terms-use-card{
        padding:40px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-about p{
        margin:0 auto;
    }

    .footer-bottom{
        justify-content:center;
        text-align:center;
    }
}

@media(max-width:600px){

    .terms-use-hero{
        min-height:auto;
        padding:160px 20px 80px;
    }

    .terms-use-hero h1{
        font-size:38px;
    }

    .terms-use-section{
        padding:75px 20px;
    }

    .terms-use-card{
        padding:28px;
        border-radius:24px;
    }

    .terms-use-card h2{
        font-size:24px;
    }

    .terms-use-card p{
        font-size:15px;
    }

    .footer-bottom div{
        justify-content:center;
        flex-wrap:wrap;
    }
}