.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background-color: #F6FCFF;
    padding: 100px 0;
    margin: 0px 5vw;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #00A0FA;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    animation: lineExpand 1.5s ease forwards 0.5s;
}

.hero-underline {
    display: block;
    width: 80px;
    height: 3px;
    background-color: #00A0FA;
    margin: 10px auto 0;
    transform: scaleX(0);
    animation: lineExpand 1s ease forwards 0.8s;
}

/* Content Section */
.content {
    background-color: #fff;
    padding: 60px 0;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.terms-section {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: calc(1.2s + var(--delay, 0s));
    text-align: justify !important;
}

.terms-section:nth-child(2) {
    --delay: 0.2s;
}

.terms-section:nth-child(3) {
    --delay: 0.4s;
}

.terms-section:nth-child(4) {
    --delay: 0.6s;
}

.terms-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.terms-section p {
    margin-bottom: 15px;
    color: #555;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lineExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero {
        padding: 70px 0;
        margin: 0px 2px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .content {
        padding: 40px 20px;
    }
}