/* About Page Styles - Matching HomePage design patterns */

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 10px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    font-weight: 500;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.full-width {
    grid-column: 1 / -1;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
}

.card-icon {
    font-size: 1.8rem;
}

.card-body {
    padding: 20px;
}

.card-body p {
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Features List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #434343;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Links */
.link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 153, 0, 0.3);
}

.link-button:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 153, 0, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        padding: 10px;
    }

    .hero-section {
        padding: 30px 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-logo {
        height: 80px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card-header h2 {
        font-size: 1.2rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }

    .card-body {
        padding: 15px;
    }

    .card-header {
        padding: 12px 15px;
    }
}
