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

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        overflow-x: hidden;
        color: #1a1a1a;
    }

    html {
        scroll-behavior: smooth;
    }




    /* buttons style  */

    .btn-global-style {
        display: block;
        width: 100%;
        padding: 0.8rem;
        background: #0f4077;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-global-style:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
        color: white;
    }