/* Regulations Section Styles */
.regulations-section {
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.regulations-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.regulations-header {
    text-align: center;
    margin-bottom: 48px;
}

.regulations-title {
    font-family: 'Aileron', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.regulations-subtitle {
    font-family: 'Aileron', sans-serif;
    font-size: 26px;
    line-height: 1.3333;
    color: #ffffff;
}

/* Grid for Regulations - 2x2 on desktop as per HTML structure */
.regulations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 896px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .regulations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .regulations-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
    }
}

/* Card Styles */
.regulation-card {
    background: #030303;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.regulation-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.regulation-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.regulation-flag-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.regulation-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.regulation-name {
    font-family: 'Aileron';
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.regulation-desc {
    font-family: 'Aileron';
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #26A17B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Partners Section Styles */
.partners-section-container {
    margin-bottom: 96px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 896px;
    margin: 0 auto;
}

.partners-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
    cursor: default;
}

@media (min-width: 768px) {
    .partners-card {
        min-height: 190px;
    }
}

.partners-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.partners-icon-wrapper {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .partners-icon-wrapper {
        height: 80px;
    }
}

.partners-card:hover .partners-icon-wrapper {
    transform: scale(1.05);
}

.partners-logo {
    object-fit: contain;
    max-height: 64px;
    width: auto;
    max-width: 100%;
}