/* Main Content Section */

.main-section{
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 80px;
}

/* Page Header */
.page-header{
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-title h1{
    font-weight: 800;
    font-size: 52px;
    text-align: center;
    color: #272727;
}

.page-title h1 span{
    color: #F50000;
}

.page-subtitle p{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    text-align: center;
    color: #5E5F63;
    max-width: 1100px;
}

/* Terms Content */
.terms-content{
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.terms-section{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terms-section h2{
    font-weight: 700;
    font-size: 24px;
    color: #272727;
    line-height: 1.4em;
}

.terms-section p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: #5E5F63;
    text-align: justify;
}

.terms-section a{
    color: #F50000;
    text-decoration: none;
}

.terms-section a:hover{
    text-decoration: underline;
}

/* CTA Section */
.terms-cta{
    padding-top: 60px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-top: 1px solid #E4E4E4;
}

.cta-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-content h2{
    font-weight: 800;
    font-size: 42px;
    text-align: center;
    color: #272727;
}

.cta-content p{
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #5E5F63;
}

.cta-button{
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button a{
  text-decoration: none;
}

.cta-button button{
    height: 44px;
    padding: 14px 18px;
    font-weight: 600;
    gap: 3px;
    border-radius: 6px;
    border: none;
    background-color: #F50000;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
}

.cta-button button img{
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cta-button button:hover img{
  display: block;
}

.cta-button button:hover{
  background-color: #272727;
}

.company-name{
    display: flex;
    gap: 12px;
    padding-bottom: 8px;
}

.company-name img{
    width: 20px;
    height: 20px;
}

.company-name p{
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
}