/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero-cta {
    margin-top: 40px;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

/* Sección de Presentación */
.presentation {
    padding: 80px 0;
    background: white;
}

.presentation-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image {
    flex-shrink: 0;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.profile-role {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
}

.profile-links {
    margin-bottom: 25px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f7fafc;
    color: #667eea;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

.social-link.cv-download {
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
}

.social-link.cv-download:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.profile-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Sección de Propuesta */
.proposal {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .presentation-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .profile-pic {
        width: 150px;
        height: 150px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 25px;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(2) {
    animation-delay: 0.1s;
}

.card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estados de hover mejorados */
.card-link:hover i {
    transform: translateX(3px);
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Estilos para páginas de contenido */
.content-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.content-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.content-block h3 {
    color: #34495e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-block h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.content-block p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Profile card */
.profile-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.profile-card .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

.profile-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
}

.profile-card .role {
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

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

.experience-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.experience-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.experience-item .company {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.experience-item .period {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.experience-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.experience-item li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Skills grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.skill-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.skill-category h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.skill-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.skill-category li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.value-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    margin: 0;
}

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

.arch-component {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.arch-component h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arch-component ul {
    margin: 0;
    padding-left: 1.5rem;
}

.arch-component li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Tech stack */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.tech-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.tech-category h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-item {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Methodology steps */
.methodology-steps {
    margin-top: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #555;
    margin: 0;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    margin: 0;
}

/* Metrics grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.metric-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.metric-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.metric-item p:last-child {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
}

/* Executive summary */
.executive-summary {
    margin-top: 1rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
}

/* Sentiment analysis */
.sentiment-analysis {
    margin-top: 1rem;
}

.sentiment-chart {
    margin-bottom: 2rem;
}

.sentiment-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    color: white;
}

.sentiment-bar.positive {
    background: #28a745;
}

.sentiment-bar.neutral {
    background: #6c757d;
}

.sentiment-bar.negative {
    background: #dc3545;
}

.sentiment-percentage {
    font-weight: bold;
    font-size: 1.2rem;
}

.sentiment-insights h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sentiment-insights ul {
    margin: 0;
    padding-left: 1.5rem;
}

.sentiment-insights li {
    margin-bottom: 0.5rem;
    color: #555;
}

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

.topic-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.topic-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topic-frequency {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.topic-item p:last-child {
    color: #666;
    margin: 0;
}

/* Bugs list */
.bugs-list {
    margin-top: 1rem;
}

.bug-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.bug-item.critical {
    border-left-color: #dc3545;
}

.bug-item.high {
    border-left-color: #fd7e14;
}

.bug-item.medium {
    border-left-color: #ffc107;
}

.bug-item.low {
    border-left-color: #28a745;
}

.bug-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bug-frequency {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bug-item p:last-child {
    color: #666;
    margin: 0;
}

/* Features list */
.features-list {
    margin-top: 1rem;
}

.feature-request {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.feature-request.high {
    border-left-color: #28a745;
}

.feature-request.medium {
    border-left-color: #ffc107;
}

.feature-request.low {
    border-left-color: #6c757d;
}

.feature-request h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-demand {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-request p:last-child {
    color: #666;
    margin: 0;
}

/* Rating analysis */
.rating-analysis {
    margin-top: 1rem;
}

.rating-distribution {
    margin-top: 1rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-label {
    min-width: 80px;
    color: #2c3e50;
    font-weight: 600;
}

.rating-progress {
    flex: 1;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #667eea;
    transition: width 0.3s ease;
}

.rating-percentage {
    min-width: 40px;
    text-align: right;
    color: #2c3e50;
    font-weight: 600;
}

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

.recommendation {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.recommendation.priority-high {
    border-left-color: #dc3545;
}

.recommendation.priority-medium {
    border-left-color: #fd7e14;
}

.recommendation.priority-low {
    border-left-color: #28a745;
}

.recommendation h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recommendation ul {
    margin: 0;
    padding-left: 1.5rem;
}

.recommendation li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Impact metrics */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.metric-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.metric-card .metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.metric-card p:last-child {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive design for content pages */
@media (max-width: 768px) {
    .content-block {
        padding: 1.5rem;
    }
    
    .profile-card {
        flex-direction: column;
        text-align: center;
    }
    
    .experience-grid,
    .skills-grid,
    .values-grid,
    .architecture-grid,
    .tech-stack,
    .features-grid,
    .metrics-grid,
    .benefits-list,
    .summary-stats,
    .topics-grid,
    .recommendations,
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rating-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 

/* Insights grid */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.insight-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.insight-category.positive {
    border-left-color: #28a745;
}

.insight-category.negative {
    border-left-color: #dc3545;
}

.insight-category h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.insight-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.insight-item h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.insight-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Comparison table */
.comparison-table {
    margin-top: 1rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: #667eea;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.benefits-list {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #e8f5e8;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.benefits-list h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefits-list ul {
    margin: 0;
    padding-left: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Conclusions */
.conclusions {
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
}

.conclusion-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.conclusion-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.conclusion-item p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.conclusion-item ol,
.conclusion-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.conclusion-item li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Files section */
.files-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.files-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.files-category h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.files-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.files-category li {
    margin-bottom: 0.5rem;
    color: #555;
}

.files-category code {
    background: #e9ecef;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #495057;
}

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

.metric-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.metric-category h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.metric-category li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Recommendation items */
.recommendation-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.recommendation-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.recommendation-item h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.recommendation-item p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.recommendation-item ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.recommendation-item li {
    margin-bottom: 0.5rem;
    color: #555;
}

.recommendation-item p:last-child {
    background: #e8f5e8;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #28a745;
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .files-section {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
    
    .conclusion-item {
        padding: 1rem;
    }
    
    .recommendation-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .insights-grid,
    .files-section {
        gap: 1rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
    
    .conclusion-item,
    .metric-category {
        padding: 1rem;
    }
} 