* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: #0c345d;
    color: white;
}

.logo {
    font-size: 42px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.call-btn {
    padding: 10px 15px;
    background: rgb(255, 183, 1);
    border: none;
    cursor: pointer;
}

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    
}

.hero h1 {
    font-size: 48px;
}

.risk-btn {
    margin-top: 20px;
    padding: 15px 30px;
    background: gold;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

footer {
    background: #222;
    color: white;
    padding: 10px;
    margin-top: 20px;
}
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background: #f4f4f4;
            text-align: center;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 40px;
            background: #0c345d;
            color: white;
        }

        .logo {
            font-size: 42px;
            font-weight: bold;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin: 0 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: rgb(221, 216, 216);
            font-size: 16px;
        }

        .section {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px 0;
        }

        .text-container {
            width: 50%;
            padding: 20px;
            text-align: left;
        }

        .text-container h1 {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .text-container p {
            font-size: 18px;
            line-height: 1.5;
        }

        .image-container {
            width: 30%;
            text-align: center;
        }

        .image-container img {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 60%; 
            border: 5px solid #f4efef;
        }
        .button-row {
            display: flex;
            justify-content: center;
            gap: 20px; 
            margin-top: 20px;
        }
        