/* Terms and Conditions Page Styling - Flat Modern Design */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.site-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #fff
}

@media (min-width: 1400px) {
  .site-container {
    min-width: 1400px;
  }
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

body {
    background-color: #f8f9fa;
}

.terms-container {
    width: 100%;
    padding: 0 1rem;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
}

/* Hero Section - Flat Design */
.terms-hero {
    text-align: center;
    padding-top: 2rem;
    background: #fff;
    color: #333;
    border-radius: 0;
}

.terms-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.terms-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* Content Sections - Flat Design */
.terms-content {
    padding-bottom: 2rem;
}

.terms-section {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0;
}

.terms-section h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

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

.terms-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.terms-section strong {
    font-weight: 600;
    color: #333;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 0 0.5rem;
    }
    
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero p {
        font-size: 1.1rem;
    }
    
    .terms-section {
        padding: 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
}
