/* About Page Specific Styles */
.hero-simple {
    padding: 6rem 0 4rem;
    background-color: var(--bg-secondary);
    text-align: center;
}

.hero-simple-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-simple-logo {
    margin-bottom: 2rem;
}

.hero-simple-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-simple-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--reportlog-blue) 30%, var(--reportlog-blue-light) 70%, var(--reportlog-blue-lighter) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-simple-subtitle {
    font-size: 1.5rem;
    color: var(--reportlog-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-simple-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Stats Simple */
.hero-stats-simple {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 150px;
}

.hero-stat-simple:hover {
    transform: translateY(-4px);
    border-color: var(--reportlog-blue);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.hero-stat-simple i {
    font-size: 1.5rem;
    color: var(--reportlog-blue);
}

.hero-stat-simple span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    background-color: var(--bg-primary);
}

.content-section.values-section {
    background-color: var(--bg-secondary);
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Content Icon */
.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066ff 0%, #3385ff 50%, #66a3ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

/* Mission Card */
.mission-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.mission-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0066ff 0%, #3385ff 50%, #66a3ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.25);
    flex-shrink: 0;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-highlight {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 500;
    border-left: 4px solid #0066ff;
    padding-left: 1.5rem;
}

/* Values Section */
.values-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066ff 0%, #3385ff 50%, #66a3ff 100%);
}

.value-item:hover {
    transform: translateY(-4px);
    border-color: #0066ff;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff 0%, #3385ff 50%, #66a3ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.15);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.value-item h3 {
    color: #0066ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Values List for Mission Card Style */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.value-item-inline:hover {
    border-color: #0066ff;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.1);
}

.value-item-inline i {
    color: #0066ff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.value-item-inline span {
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.5;
}

/* Vision Card */
.vision-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.vision-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-highlight {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 500;
    border-left: 4px solid #0066ff;
    padding-left: 1.5rem;
}

.vision-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.vision-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.vision-feature:hover {
    border-color: #0066ff;
    transform: translateX(4px);
}

.vision-feature i {
    color: #0066ff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.vision-feature span {
    color: var(--text-primary);
    font-weight: 500;
}

.vision-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0066ff 0%, #3385ff 50%, #66a3ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.25);
    flex-shrink: 0;
}

/* CTA Section */
.cta-simple {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0066ff 0%, #3385ff 50%, #66a3ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.25);
}

.cta-simple-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.cta-simple p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-simple-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-simple-title {
        font-size: 2.5rem;
    }
    
    .hero-simple-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-simple-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .content-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-stats-simple {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-stat-simple {
        min-width: 120px;
        padding: 0.75rem;
    }
    
    .hero-stat-simple i {
        font-size: 1.25rem;
    }
    
    .hero-stat-simple span {
        font-size: 0.8rem;
    }
    
    .content-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mission-card,
    .vision-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .mission-icon-large,
    .vision-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin: 0 auto;
    }
    
    .mission-highlight,
    .vision-highlight {
        border-left: none;
        border-bottom: 3px solid #0066ff;
        padding-left: 0;
        padding-bottom: 1rem;
    }
    
    .values-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .vision-features {
        gap: 0.75rem;
    }
    
    .vision-feature {
        padding: 0.5rem;
    }
    
    .cta-simple-title {
        font-size: 2rem;
    }
    
    .cta-simple p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-simple-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}
