/* About Page Frontend Styles */
.about-resume-builder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header Section */
.about-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.about-header h1 {
    font-size: 3rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-header h1 i {
    margin-right: 15px;
    font-size: 2.8rem;
}

.about-header .tagline {
    font-size: 1.4rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 300;
}

/* Content Sections */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-section h2 {
    color: #667eea;
    font-size: 2rem;
    margin: 0 0 25px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-section h2 i {
    font-size: 1.8rem;
    color: #764ba2;
}

.feature-section p {
    font-size: 1.1rem;
    margin: 0 0 20px 0;
    color: #555;
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.how-it-works h2 {
    text-align: center;
    color: #667eea;
    font-size: 2.2rem;
    margin: 0 0 40px 0;
    font-weight: 600;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.step-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.step-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Target Audience Section */
.target-audience {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.target-audience h2 {
    color: white;
    font-size: 2.2rem;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.target-audience p {
    font-size: 1.2rem;
    margin: 0 0 25px 0;
    color: white;
    opacity: 1;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.audience-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.audience-item h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.audience-item p {
    color: white;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Call to Action Section */
.call-to-action {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.call-to-action h2 {
    color: white;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.call-to-action p {
    font-size: 1.3rem;
    margin: 0 0 30px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: white;
    color: #28a745;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-resume-builder-container {
        padding: 20px 15px;
    }
    
    .about-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .about-header h1 {
        font-size: 2.2rem;
    }
    
    .about-header .tagline {
        font-size: 1.2rem;
    }
    
    .feature-section {
        padding: 25px 20px;
    }
    
    .feature-section h2 {
        font-size: 1.6rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-it-works,
    .target-audience,
    .call-to-action {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-header h1 {
        font-size: 1.8rem;
    }
    
    .about-header .tagline {
        font-size: 1.1rem;
    }
    
    .feature-section h2 {
        font-size: 1.4rem;
    }
    
    .call-to-action h2 {
        font-size: 2rem;
    }
    
    .call-to-action p {
        font-size: 1.1rem;
    }
}
