/* Terms & Conditions Premium Timeline Style */


/* Hero Section */
.terms-hero {
     text-align: center;
    padding: 60px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background: #fafafa;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    height: 280px;
}



.terms-title {
    font-size: 48px;
    font-weight: 600;
    color: #4A3426;
    letter-spacing: -0.5px;
    z-index: 2;
    margin: 0 !important;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.terms-subtitle {
     font-size: 18px;
    font-weight: 300;
    color: #4B5563;
    position: relative;
    z-index: 2;
    margin: 0 !important;
font-family: -apple-system, BlinkMacSystemFont, 
             "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.terms-date {
    display: inline-block;
    padding: 8px 20px;
    background: #fff5eb;
    color: #b87939;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 16px;
}
/* Timeline */
.terms-timeline {
    position: relative;
    padding-left: 60px;
    margin-bottom: 70px;
}

.terms-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #b87939 0%, #d4955f 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid #b87939;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(184, 121, 57, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-marker {
    background: linear-gradient(135deg, #b87939 0%, #d4955f 100%);
    transform: scale(1.1);
}

.timeline-marker svg {
    width: 24px;
    height: 24px;
    color: #b87939;
    transition: color 0.4s ease;
}

.timeline-item:hover .timeline-marker svg {
    color: #fff;
}

.timeline-content {
    background: #fff;
    border: 2px solid #f5f5f5;
    border-radius: 16px;
    padding: 28px 32px;
    transition: all 0.35s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 18px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid #f5f5f5;
    transition: border-right-color 0.35s ease;
}

.timeline-item:hover .timeline-content {
    border-color: #b87939;
    box-shadow: 0 12px 32px rgba(184, 121, 57, 0.12);
    transform: translateX(8px);
}

.timeline-item:hover .timeline-content::before {
    border-right-color: #b87939;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA Section */
.terms-cta {
    background: #4A3426;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}



@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 24px;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: #FFFFFF1A;
    color: #fff !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    color: black !important;
    background: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .content-container {
        padding: 40px 12px;
    }
    
    .terms-title {
        font-size: 32px;
    }
    .terms-subtitle {
        font-size: 16px;
    }
    .terms-hero {
        padding: 40px 12px;
        height: 250px;
    }
    
    .terms-timeline {
        padding-left: 50px;
        margin-bottom: 50px;
    }
    
    .terms-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: -50px;
        width: 42px;
        height: 42px;
    }
    
    .timeline-marker svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-content {
        padding: 22px 24px;
    }
    
    .timeline-content::before {
        left: -10px;
        border-right-width: 10px;
    }
    
    .timeline-item {
        padding-bottom: 40px;
    }
    
    .terms-cta {
        padding: 36px 24px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
}