main {
    margin: 0 200px;
}

.insurance-title{
    text-align: center;
    margin: 30px auto 20px auto;
}

.insurance-title img {
    width: min(500/ 1200 * 40vw, 500px);
}

.insurance-text {
    text-align: center;
}

.action-btn {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
}

.action-btn button {
    border: none;
    background: linear-gradient(to bottom, #fbc971, #F7B244);
    background-size: 100% 200%;
    padding: 20px 30px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 10px 0;
    box-shadow: 4px 4px;
    transition: all 0.3s ease;
    width: 300px;
}

.action-btn button:hover {
    transform: translateY(2px);
    background: linear-gradient(to bottom, #fdd89d, #fbc673);    
}

.action-btn button a {
    text-decoration: none;
    color: #1D4E55;
}

.add-text {
    font-size: 12px;
    text-align: center;
}

.image-box {
    text-align: center;
    margin-top: 50px;
}

.note-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.note {
    font-size: 12px;
    text-align: left;
    margin: 50px auto;
    display: inline-block;
    border: 1px solid #1D4E55;
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;

}

.note li {
    margin: 5px 0;
}

.note a {
    text-decoration: underline;
    color: #167583;
    transition: all 0.3s ease;
}

.note a:hover {
    color: #59bbca;
}

@media screen and (max-width: 800px) {
    main {
        margin: 0 100px;
    }

    .insurance-title img {
        width: max(160/ 1200 * 40vw, 160px);
    }
}

@media screen and (max-width: 440px) {
    main {
        margin: 0 50px;
    }

    .action-btn button {
        width: 250px;
    }
}