body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}

.page-container {
    max-width: 1600px;
    margin: auto;
    padding: 0;
    margin-top: 94px;
}

.page-content-title-container {
    margin: 60px 0 50px 0;
}

.page-content-main-title {
    text-align: center;
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0;
    margin-bottom: 32px;
}

.title-line-break {
    width: 120px;
    height: 1px;
    background-color: #eb0a1e;
    margin: 0 auto;
}

.page-content-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    color: #1A1A1A;
    text-transform: uppercase;
    text-align: center;
}

.page-content-background {
    width: 100%;
    padding: 40px 320px 0 0;
}

.page-content {
    max-width: 1080px;
    background-color: #fff;
    /* padding:20px 40px 26px 112px ; */
    padding: 40px 85px 40px 120px;
}

.sub-title-container {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.sub-title {
    font-weight: 600;
    line-height: 150%;
    padding-bottom: 16px;
    margin-bottom: 0;
    margin-top: 16px;
    margin-right: 40px;
    font-family: Toyota Type;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
}

.collapse-expand-button {
    position: absolute;
    top: -5px;
    right: -18px;
}

.expand-icon {
    width: 21px;
    height: 21px;
    transition: all 0.7s ease-in-out;
    cursor: pointer;
}

.collapse-icon {
    width: 21px;
    transition: all 0.7s ease-in-out;
    cursor: pointer;
}

.page-contact {
    text-align: center;
    padding: 34px 0;
    background-color: #f5f5f5;
}

.page-contact>img {
    width: 24px;
}

.page-contact>a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 10px;
}

@media(max-width:1080px) {
    .page-container {
        margin-top: 60px;
    }
    .page-content {
        padding: 56px 24px 30px 24px;
        background-color: rgba(255, 255, 255, 0.8);
    }
    .page-content-background {
        padding: 0;
        height: 100%;
    }
    .page-content-main-title {
        margin-top: 0;
    }
    .sub-title {
        font-size: 14px;
    }
    .text {
        font-size: 14px;
    }
    .page-content-main-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    .page-content-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

@media(max-width:739px) {
    .sub-title{
        margin-right: 24px;
    }
}

.page-content-consulting-title {
    font-size: 16px;
    line-height: 201.5%;
    text-align: center;
    color: #000000;
    font-weight: 600;
}
    .page-content-consulting-title .highlight-title {
        color: #eb0a1e;
    }

/* Button Dự toán chi phí bảo hiểm */
.page-content-estimate-button {
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
}

.page-content-estimate-button .estimate-cost-button,
.estimate-cost-button {
    display: inline-block;
    background-color: #EB0A1E !important;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 16px 48px;
    border: 2px solid #EB0A1E !important;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(235, 10, 30, 0.3);
}

/* Shimmer effect */
.page-content-estimate-button .estimate-cost-button::before,
.estimate-cost-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.page-content-estimate-button .estimate-cost-button:hover,
.estimate-cost-button:hover {
    background-color: #C5091A !important;
    border-color: #C5091A !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(235, 10, 30, 0.5), 0 0 20px rgba(235, 10, 30, 0.3);
}

/* Shimmer animation on hover */
.page-content-estimate-button .estimate-cost-button:hover::before,
.estimate-cost-button:hover::before {
    left: 100%;
}

.page-content-estimate-button .estimate-cost-button:active,
.estimate-cost-button:active {
    background-color: #A00815 !important;
    border-color: #A00815 !important;
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 4px 15px rgba(235, 10, 30, 0.4);
}

.page-content-estimate-button .estimate-cost-button:visited,
.estimate-cost-button:visited {
    color: #FFFFFF !important;
}

/* Pulse animation for attention */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(235, 10, 30, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(235, 10, 30, 0.5), 0 0 30px rgba(235, 10, 30, 0.2);
    }
}

.page-content-estimate-button .estimate-cost-button,
.estimate-cost-button {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.page-content-estimate-button .estimate-cost-button:hover,
.estimate-cost-button:hover {
    animation: none;
}

@media (max-width: 1080px) {
    .page-content-estimate-button .estimate-cost-button,
    .estimate-cost-button {
        font-size: 16px;
        padding: 14px 40px;
    }
    
    .page-content-estimate-button {
        margin: 32px 0;
    }
}