/* Legal Pages Styles */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    display: block;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
    padding-top: 1rem;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #333;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.7;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #333;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature p {
    font-size: 0.875rem;
    color: #666;
}

/* Process List */
.process-list {
    counter-reset: process-counter;
    list-style: none;
    margin: 2rem 0;
}

.process-list li {
    margin-bottom: 2rem;
    padding-left: 0;
}

.process-list h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #5b4cdb;
}

.process-list p {
    font-size: 1rem;
    color: #666;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.team-member .role {
    font-weight: 600;
    color: #5b4cdb;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.875rem;
    color: #666;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ff9800;
}

.disclaimer-section p {
    font-size: 0.875rem;
    color: #856404;
}

/* Links */
.about-container a {
    color: #5b4cdb;
    text-decoration: none;
}

.about-container a:hover {
    text-decoration: underline;
}

.about-container ul {
    list-style: none;
    margin: 1rem 0;
}

.about-container ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-container ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5b4cdb;
}