@font-face {
    font-family: 'FS Industrie Wide';
    src: url("../fonts/FS-Industrie-Wd-Bold.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'FS Industrie Wide', sans-serif;
    overflow-x: hidden;
}

/* Animation states */
.stat-card,
.team-card,
.value-card,
.content-section {
    opacity: 0;
    transform: translateY(50px);
}

/* Content Sections */
.content-section {
    padding: 2.5vh 10vw;
    margin: 0 auto;
}

.section-title {
    font-size: 5vh;
    font-weight: bold;
    color: black;
    margin-bottom: 3vh;
    text-align: center;
}

.section-content {
    font-size: 1.5vh;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2vh;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vh;
    align-items: center;
    margin-bottom: 4vh;
}

.column-content h3 {
    font-size: 4vh;
    color: red;
    margin-bottom: 1.5vh;
}

.column-content p {
    font-size: 2vh;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5vh;
}

.column-image {
    border-radius: 10px;
    overflow: hidden;
}

.column-image img {
    width: 90%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    padding: 6vh 10vw;
}

.stats-container {
    margin: 0 auto;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2vh;
    margin-top: 3vh;
}

.stat-card {
    background: white;
    padding: 2.5vh;
    border-radius: 20px;
    border: 2px solid red;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3vh;
    font-weight: bold;
    color: red;
    margin-bottom: 1vh;
}

.stat-label {
    color: #666;
    font-size: 1.5vh;
}

/* Values Section */
.values-section {
    padding: 6vh 10vw;
}

.values-container {
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2vw;
    margin-top: 3vh;
}

.value-card {
    background: white;
    padding: 2.5vh;
    border-radius: 20px;
    border-inline-start: 5px solid red;
    transition: transform 0.3s ease;
    height: 35vh;
    overflow-y: auto;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card::-webkit-scrollbar {
    width: 8px;
}

.value-card::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.value-card::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.value-card::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.value-icon {
    font-size: 3vh;
    color: red;
    margin-bottom: 1vh;
    position: sticky;
    top: 0;
    background: white;
    padding-bottom: 1vh;
    z-index: 1;
}

.value-title {
    font-size: 3vh;
    font-weight: bold;
    color: black;
    margin-bottom: 1vh;
}

.value-description {
    color: #666;
    line-height: 1.6;
    font-size: 1.5vh;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .page-header h1 {
        font-size: 2.5vh;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2vh;
    }

    .stats-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

}
