body{
    font-family:system-ui,-apple-system,Segoe UI,Roboto;
    margin:0;
    background:#f6f8fb;
    color:#222;
    }
    
    header{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:100;
    }
    
    .nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    }
    
    .logo {
    font-weight: 700;
    font-size: 40px;
    color: black;
    }
      
    .tick-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #DCA032;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    margin-left: 2px;
    position: relative;
    top: -10px;
    }
      
    .tick {
    color: whitesmoke;
    font-size: 34px;           /* slightly smaller than before */
    font-weight: 400;           /* lighter than bold */
    font-family: "Segoe UI", Roboto, Arial, sans-serif; /* clean professional font */
    position: relative;               /* slight upward nudge */
    }

    nav a{
    margin-left:25px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    }
    
    .hero{
    background:#1c2e44;
    color:white;
    padding:120px 20px;
    text-align:center;
    height: 20vh;
    }
    
    .hero h1{
    font-size:42px;
    max-width:900px;
    margin:auto;
    color: #DCA032;
    }
    
    .hero p{
    font-size:18px;
    margin-top:20px;
    }
    
    .container{
    max-width:1100px;
    margin:auto;
    padding:80px 20px;
    }
    
    .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    }
    
    .card{
    background:white;
    padding:35px;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    }
    
    .service{
    background:white;
    padding:40px;
    border-radius:8px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    margin-bottom:30px;
    }
    
    .partner{
    background:white;
    padding:40px;
    border-radius:8px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    margin-bottom:30px;
    }
    
    .testimonial{
    background:white;
    padding:30px;
    border-left:4px solid #1c2e44;
    margin-bottom:20px;
    }
    
    footer{
    background:#0f1c2a;
    color:white;
    text-align:center;
    padding:30px;
    }
    
    footer a{
    color:white;
    text-decoration:none;
    }
    
    .hero-image{
    background-size:cover;
    background-position:center;
    }

    .partner-logo {
        max-width: 200px;
        height: auto;
        display: block;
        margin: 15px 0;
        border-radius: 8px;
    }

    /* Hamburger button */
    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: #333;
        transition: transform 0.3s, opacity 0.3s;
    }

    /* Mobile styles */
    @media (max-width: 768px) {

        .logo {
            font-size: 28px;
        }

        .tick-circle {
            width: 34px;
            height: 34px;
        }

        .tick {
            font-size: 24px;
        }

        .menu-toggle {
            display: flex;
        }

        nav {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            z-index: 99;
        }

        nav.open {
            display: flex;
        }

        nav a {
            margin-left: 0;
            padding: 14px 20px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 16px;
        }

        .nav {
            position: relative;
        }

        .container {
            padding: 40px 16px;
        }

        .hero {
            padding: 60px 16px;
        }

        .hero h1 {
            font-size: 28px;
        }

        .card {
            padding: 24px 16px;
        }

        .service {
            padding: 24px 16px;
        }

        .partner {
            padding: 24px 16px;
        }

        .testimonial {
            padding: 20px 16px;
        }

        h1 {
            font-size: 26px;
        }

        h2 {
            font-size: 20px;
        }
    }