/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-page {
    background-color: #ffffff;
}

.about-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.about-hero h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-hero p {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.about-section:last-of-type {
    border-bottom: none;
}

.about-section h2 {
    font-size: 1.875rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 900px;
}

.about-section ul {
    max-width: 900px;
    margin: 1.5rem 0;
}

.about-section li {
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background-color: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.1);
}

.value-item h3 {
    color: #1d4ed8;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-item p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.sources-list {
    background-color: #f0f9ff;
    border-left: 4px solid #1d4ed8;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    max-width: 900px;
}

.sources-list h3 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sources-list ul {
    margin: 0;
}

.sources-list li {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.cta-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #93c5fd;
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 700px;
}

.cta-box h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #1e40af;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0 2rem;
    }

    .about-hero h1 {
        font-size: 1.875rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-section {
        padding: 2.5rem 0;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sources-list {
        padding: 1.25rem 1.5rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.5rem;
    }

    .value-item {
        padding: 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.25rem;
    }
}

/* Sources List Container */
.sources-list {
    background-color: #f0f9ff;
    border-left: 4px solid #1d4ed8;
    padding: 2rem;
    margin: 2rem 0;
    max-width: 900px;
    border-radius: 0 8px 8px 0; /* Subtle rounding on right side */
}

/* Header Style */
.sources-list h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* List Reset */
.sources-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* List Items */
.sources-list li {
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1.5rem;
}

.sources-list li:last-child {
    margin-bottom: 0;
}

/* Custom Bullet Point (Optional decorative dot) */
.sources-list li::before {
    content: "•";
    color: #1d4ed8;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Link Styling */
.sources-list a {
    color: #1d4ed8;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.sources-list a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Strong Text Styling */
.sources-list strong {
    color: #111827;
    font-size: 1.05rem;
    display: block; /* Forces description to new line */
    margin-bottom: 0.25rem;
}

/* Description Text */
.source-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sources-list {
        padding: 1.5rem;
    }
}

/* Value Items - Enhanced with Links */
.value-item {
    position: relative;
    padding-bottom: 1rem;
}

.value-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-link {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 0.75rem;
    transition: all 0.2s ease;
}

.value-link:hover {
    color: #5563d4;
    transform: translateX(4px);
}

/* Not List - Enhanced */
.not-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.not-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #e5e7eb;
}

.not-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.not-list li div {
    flex: 1;
}

.not-list li strong {
    color: #1f2937;
}

/* Trust Section */
.trust-section {
    background: #f8fafc;
    padding: 3rem 0;
    margin: 2rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* CTA Section - Enhanced */
.cta-section {
    padding: 0;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.cta-box h2 {
    color: white;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box .btn-primary {
    background: white;
    color: #667eea;
}

.cta-box .btn-primary:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
}

.cta-box .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-box .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sources List */
.sources-list {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.sources-list h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sources-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sources-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.sources-list li:last-child {
    border-bottom: none;
}

.source-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.source-item a {
    color: #667eea;
    text-decoration: none;
}

.source-item a:hover {
    text-decoration: underline;
}

.source-desc {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
    
    .not-list li {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}