.about-hero {
    position: relative;
    padding: 100px 0 50px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('StockPhoto/AboutUs.jpg'); 
    background-size: cover;
    background-position: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ddd;
}

.about-section {
    padding: 60px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 102, 0, 0.3);
}

.about-reasons {
    margin-top: 30px;
}

.reason-item {
    display: flex;
    margin-bottom: 20px;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 102, 0, 0.1);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.reason-icon {
    flex: 0 0 50px;
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-right: 20px;
}

.reason-content {
    flex: 1;
}

.reason-content h4 {
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.team-section {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 250px);
        justify-content: center;
    }
}

.team-member {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.team-info p {
    color: #ccc;
    font-size: 0.9rem;
}

.mission-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.5);
}

.mission-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.mission-text {
    flex: 2;
    min-width: 300px;
}

.mission-text h2 {
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.mission-form {
    flex: 1;
    min-width: 300px;
    background: rgba(20, 20, 20, 0.7);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.mission-form h3 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ddd;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-submit {
    background: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #ff8533;
}

@media (max-width: 768px) {
    .about-content, .mission-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
