.maindiv {
    margin: 80px 0;
    display: flex;
    justify-content: center;
}

.service-card {
    background-color: #eff9fc;
    border-radius: 24px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    font-family: "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.service-header {
    background: #edf5ff;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-header h2 {
    margin: 0;
    color: #002466;
    font-size: 28px;
}

.service-text {
    padding: 40px;
    font-size: 18px;
    line-height: 1.8;
    color: #1f2a44;
}

.service-text p {
    margin-bottom: 20px;
}

.service-text h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #002466;
    font-size: 22px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-list li {
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    position: relative;
}

.service-list li::before {
    content: "✓";
    color: #002466;
    font-weight: bold;
    margin-right: 10px;
}

.service-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0,0,0,0.15);
    font-size: 16px;
    color: #333;
}


.div2 {
    display: flex;
    width: auto;
    height: auto;
    margin: 20px;
}

.title1{
    width: 100%;
    height: 100px;
    background: #edf5ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #002466;
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
}

.b1{
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.button {
    display: inline-block;
    border-radius: 4px;
    background-color: #edf5ff;
    border: none;
    color: #000000;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 400px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
  
.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
  
.button:hover span {
    padding-right: 25px;
}
  
.button:hover span:after {
    opacity: 1;
    right: 0;
}