/* about.css */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #333;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 0 0 12px 12px;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.product-showcase {
    margin: 60px 0;
}

.showcase-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.product-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #4a5568;
    margin-top: 10px;
    font-size: 0.95rem;
}

.product-description {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.product-description h2 {
    color: #2c5282;
    margin-top: 0;
    font-size: 2rem;
}

.product-description ul {
    padding-left: 20px;
}

.product-description li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.product-description li:before {
    content: "•";
    color: #3182ce;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.mission-section, .technology-section, .founder-section, .values-section {
    margin-bottom: 60px;
}

.mission-card, .founder-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mission-card h2, .technology-section h2, .founder-info h2, .values-section h2 {
    color: #2c5282;
    margin-top: 0;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.mission-card h2:after, .founder-info h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #3182ce;
    border-radius: 2px;
}

.mission-list {
    padding-left: 20px;
}

.mission-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.mission-list li:before {
    content: "•";
    color: #3182ce;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.tech-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tech-card, .value-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease;
}

.tech-card:hover, .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tech-card h3, .value-card h3 {
    color: #2c5282;
    margin-top: 0;
}

.app-showcase {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    padding: 30px;
    border-radius: 12px;
}

.app-showcase img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.app-description {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.app-description h3 {
    color: #2c5282;
    margin-top: 0;
}

.app-description ul {
    padding-left: 20px;
}

.app-description li {
    margin-bottom: 10px;
}

.founder-section {
    display: flex;
    justify-content: center;
}

.founder-card {
    max-width: 800px;
    width: 100%;
}

.founder-title {
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .mission-card, .founder-card {
        padding: 25px;
    }
    
    .showcase-content, .app-showcase {
        flex-direction: column;
        gap: 25px;
    }
    
    .product-image, .app-showcase img {
        max-width: 70%;
    }
}
