/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #2b7bb2 0%, #51a85c 100%);
    color: white;
    text-align: center;
}

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

.about-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.about-mission {
    padding: 5rem 0;
}

.about-mission .column-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-mission .column-content p {
    margin-bottom: 1.5rem;
}

.about-mission .column-image img {
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

/* Values Section */
.about-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.value-icon img {
    width: 40px;
    height: 40px;
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Team Section */
.about-team {
    padding: 5rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.team-member {
    background: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
    color: var(--primary-color);
}

.member-title {
    padding: 0 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.contributors-section {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.contributors-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contributors-section p {
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* Approach Section */
.about-approach {
    padding: 5rem 0;
}

.about-approach .column-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.process-list li {
    margin-bottom: 1rem;
    position: relative;
}

.process-list li strong {
    color: var(--primary-color);
}

.disclaimers {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    margin-top: 3rem;
}

.disclaimers h3 {
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.disclaimers ul {
    padding-left: 1.5rem;
}

.disclaimers li {
    margin-bottom: 1rem;
}

/* Business Model Section */
.about-business {
    padding: 5rem 0;
}

.about-business h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-business h3:first-child {
    margin-top: 0;
}

.about-business ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.about-business li {
    margin-bottom: 0.75rem;
}

.about-business li strong {
    color: var(--primary-color);
}

/* Contact Section */
.about-contact {
    padding: 5rem 0;
    text-align: center;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-option {
    background: white;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: var(--card-shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.contact-icon img {
    width: 35px;
    height: 35px;
}

.contact-option h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-option p {
    margin-bottom: 1.5rem;
}

.social-links-horizontal {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links-horizontal a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links-horizontal a:hover {
    background: var(--primary-color);
}

.social-links-horizontal img {
    width: 20px;
    height: 20px;
}

.newsletter-large {
    background: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 3rem auto 0;
}

.newsletter-large h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.newsletter-large p {
    margin-bottom: 1.5rem;
}

.form-horizontal {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.form-horizontal input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.form-horizontal button {
    border-radius: 0 4px 4px 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .column-image {
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 4rem;
    }
    
    .about-hero h1 {
        font-size: 2.25rem;
    }
    
    .values-grid,
    .team-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .form-horizontal {
        flex-direction: column;
    }
    
    .form-horizontal input {
        border-radius: 4px;
        margin-bottom: 1rem;
    }
    
    .form-horizontal button {
        border-radius: 4px;
        width: 100%;
    }
}