body{
    background-color: #333;
}
.category-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header p {
    color: var(--primary-yellow);
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.equipment-card {
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    height: 400px;
}

.equipment-image {
    position: relative;
    height: 250px;
    background-color: #e0b420;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 75% 100%, 0 100%);
}

.equipment-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 250px;
    max-width: 100%;
}

.equipment-title {
    text-align: center;
    font-size: 24px;
    padding: 20px 0;
    font-weight: bold;color: #fff;

}
.button-group {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 9px 7px 0 10px;
}

.book-button {
    padding: 8px 10px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
    flex: 1;
    margin: 0 5px;
}

.primary-button {
    background-color: #ffc107; /* Sarı renk */
    color: #000; /* Sarı zemin üzerinde siyah yazı daha okunabilir */
}

.secondary-button {
    background-color: #212529; /* Koyu gri/siyah renk */
}

.primary-button:hover {
    background-color: #e0a800; /* Sarı renginin koyu tonu */
}

.secondary-button:hover {
    background-color: #1a1e21; /* #212529'un biraz daha koyu tonu */
}

/* Adjusting card styles to accommodate two buttons */
.equipment-card {
    padding-bottom: 20px;
}

.book-button:hover {
    background-color: #e0b420;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-image {
        margin-top: px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
    }
    
    .experience-number {
        font-size: 2.8rem;
    }
    
    .experience-text {
        font-size: 0.8rem;
    }
    
    .equipment-grid {
        justify-content: center;
        gap: 15px;
    }
    
    .equipment-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .equipment-card {
        max-width: 330px;
    }
}

@media (max-width: 767.98px) {
    .equipment-card {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}