/* Legacy Notary Public */


html{
    scroll-behavior:smooth;
}

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

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#faf8f4;
    color:#333;
}

.hero{
    background:linear-gradient(135deg,#5a3e63,#7b5a88);
    color:#fff;
    padding:120px 8% 70px;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    position:fixed;
    top:0;
    left:0;
    width:100%;

    padding:20px 8%;
    box-sizing:border-box;

    background:rgba(90,62,99,.95);
    backdrop-filter:blur(8px);
    z-index:1000;
}

.logo{
    font-size:1.7rem;
    font-weight:bold;
}

.nav ul{
    display:flex;
    gap:32px;
    list-style:none;
    align-items:center;
}

.nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.nav a:hover{
    color:#c9a227;
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
    min-width:320px;
}

.hero h1{
    font-size:3.5rem;
    margin:20px 0;
}

.subtitle{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons a{
    display:inline-block;
    margin:8px;
    padding:14px 24px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s ease;
}

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


.gold-btn{
    background:#c9a227;
    color:white;
    display:inline-block;
    padding:14px 24px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
}

.purple-btn{
    background:white;
    color:#5a3e63;
}

.outline-btn{
    border:2px solid white;
    color:white;
}

.hero-photo img{
    width: 260px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.trust-bar{
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
    padding:25px;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}/* ===== Content Sections ===== */

.content-section{
    max-width:1100px;
    margin:50px auto;
    padding:40px;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.content-section h2{
    color:#5a3e63;
    margin-bottom:20px;
    font-size:2rem;
}

.content-section p{
    line-height:1.8;
    color:#444;
    font-size:1.05rem;
}

/* Mobile */

@media (max-width:768px){

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-photo img{
        width:220px;
        margin-top:25px;
    }

    .content-section{
        margin:25px 15px;
        padding:25px;
    }

    .hero h1{
        font-size:2.4rem;
    }
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:30px;
}

.service-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:0.3s ease;
    cursor:pointer;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.service-card h3{
    color:#5a3e63;
    margin-bottom:10px;
}

.service-card p{
    margin:0;
    color:#555;
}

.cta-section{
    text-align:center;
    background:linear-gradient(135deg,#5a3e63,#8b5fa8);
    color:white;
    padding:80px 40px;
    margin:80px 0 0;
    border-radius:20px;
}

.cta-section h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
    color:#f5f5f5;
}

.service-card,
.pricing-card{
    transition: all .3s ease;
}

.service-card:hover,
.pricing-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,.15);
}

.pricing-download{
    text-align: center;
    margin-top: 30px;
}

.pricing-download .gold-btn{
    display: inline-block;
}

.gold-btn,
.purple-btn,
.outline-btn{
    transition:all .3s ease;
}

.gold-btn:hover,
.purple-btn:hover,
.outline-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

/* ===== Footer ===== */

footer{
    background:#ffffff;
    padding:60px 8%;
    text-align:center;
    border-top:1px solid #e6e6e6;
    margin-top:60px;
}

footer h3{
    color:#5a3e63;
    font-size:2rem;
    margin-bottom:15px;
}

footer p{
    color:#666;
    font-size:1rem;
    line-height:1.8;
    margin:12px 0;
}

footer a{
    color:#5a3e63;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

footer a:hover{
    color:#c9a227;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:32px;
    cursor:pointer;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav{
        position:relative;
    }

    .nav ul{
        display:none;
        flex-direction:column;
        position:absolute;
        top:80px;
        right:20px;
        width:220px;
        background:#5b436c;
        border-radius:12px;
        padding:15px;
        box-shadow:0 10px 25px rgba(0,0,0,.25);
        z-index:999;
    }

    .nav ul.show{
        display:flex;
    }

    .nav ul li{
        margin:10px 0;
    }
}