/* About Us Page Styles */

.story-section {
    padding: 4rem 2rem;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-paragraph {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.founder-spotlight {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.founder-photo {
    margin-bottom: 1.5rem;
}

.founder-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0066cc;
}

.founder-info h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.founder-title {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.founder-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.founder-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.founder-photo-large {
    text-align: center;
}

.founder-image-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #0066cc;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.2rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio-text {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-section {
    padding: 4rem 2rem;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.mission-card {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mission-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.mission-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.1rem;
}

.values-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.value-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.value-description {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.95rem;
}

.why-affinite-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

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

.why-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-3px);
}

.why-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.why-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.why-description {
    color: #6b7280;
    line-height: 1.6;
}

.contact-section {
    padding: 4rem 2rem;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3,
.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-info p,
.contact-cta p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-icon {
    font-size: 2rem;
}

.contact-details strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: #6b7280;
}

.startup-note {
    background: #e0f2fe;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.startup-note p {
    color: #0066cc;
    margin: 0;
    font-style: italic;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image-large {
        width: 150px;
        height: 150px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-cards {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-section,
    .founder-section,
    .mission-section,
    .why-affinite-section,
    .contact-section {
        padding: 3rem 1rem;
    }
} 