/* Add to the top of each CSS file */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
}

/* Improve touch targets */
button,
a,
input,
select {
    min-height: 44px; /* Minimum touch target size */
}

/* Improve form elements */
input,
select,
textarea {
    font-size: 16px;
}

/* General Refinements */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
}

/* About Hero Section */
.about-hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/tent-e.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    transition: background-image 1s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: background-image;
}

.hero-content {
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 300;
}

/* Mission Section */
.mission-section {
    padding: 10px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

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

.mission-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.mission-text {
    padding-right: 40px;
}

.subtitle {
    color: #ff6f61;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.mission-text h2 {
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}

.mission-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #ff6f61;
}

.mission-highlights {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mission-highlights li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #444;
}

.mission-highlights i {
    color: #ff6f61;
    margin-right: 15px;
    font-size: 1.2rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    background: white;
    padding: 30px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6f61;
    margin-bottom: 10px;
}

.stat-box .label {
    color: #666;
    font-size: 1.1rem;
}

/* Values Section */
.values-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    margin-top: -20px;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.value-card i {
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        padding: 20px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .mission-content {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .mission-text {
        padding-right: 0;
    }
    
    .mission-text h2 {
        font-size: 2.2rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .values-section h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 30px;
    }
}