@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    min-height: 100vh;
    color: #1a1a1a;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    position: sticky;
    top: 1rem;
    margin: 1rem 2rem;
}

.container img {
    width: 60px;
    height: auto;
}

a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.8rem;
    color: #0a0a64;
    margin-left: 2rem;
    transition: all 0.3s ease;
}

a:hover {
    color: #5c5cff;
    transform: scale(1.05);
}

.section-body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
    padding: 6rem 2rem;
}

.insurance-detail {
    width: 40%;
    background: rgba(255,255,255,0.9);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.insurance-detail h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #0a0a64;
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #0a0a64;
}

input[type=text],
input[type=number],
select.custom-style {
    width: 100%;
    padding: 1.4rem 1.8rem;
    font-size: 1.6rem;
    border-radius: 1.2rem;
    border: none;
    background: rgba(255,255,255,0.6);
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

input[type=text]:focus,
input[type=number]:focus,
select.custom-style:focus {
    outline: none;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 0 15px rgba(92,92,255,0.3);
}

input::placeholder {
    color: #888;
    font-size: 1.5rem;
}

input[type=submit] {
    width: 100%;
    padding: 1.6rem 2rem;
    font-size: 1.7rem;
    font-weight: 600;
    border-radius: 2rem;
    border: none;
    background: linear-gradient(135deg, #5c5cff, #0a0a64);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(92,92,255,0.25);
}

input[type=submit]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(92,92,255,0.4);
    background: linear-gradient(135deg, #0a0a64, #5c5cff);
}

.response-me {
    width: 100%;
    padding: 3rem 2rem;
    font-size: 2rem;
    color: #0a0a64;
    background: rgba(92,92,255,0.05);
    margin-top: 2rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.img-insure img {
    max-width: 100%;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media screen and (max-width:1118px) {
    .section-body {
        display: block;
        padding: 3rem 2rem;
    }
    .insurance-detail {
        width: 90%;
        margin: 0 auto 3rem auto;
    }
    .container img {
        width: 50px;
    }
    a {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 2.4rem;
    }
}
