/* Licence Requirements Page Specific Styles */

.rid-menubar ul li a {
    font-size: 15px !important;
    margin-right: 20px !important;
}

.license-container {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    min-height: 100vh;
    padding: 60px 0;
}

.main-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F3364F, #d12a3f);
    border-radius: 2px;
}

.license-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(243, 54, 79, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 54, 79, 0.15);
}

.card-header-custom {
    background: linear-gradient(135deg, #F3364F 0%, #d12a3f 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

.section-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.group-number {
    background: rgba(255,255,255,0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.card-body-custom {
    padding: 2rem;
    background: white;
}

.congratulations-box {
    background: #fff5f6;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #F3364F;
    font-weight: 600;
    color: #2c3e50;
}

.documentation-note {
    background: #F3364F;
    color: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 600;
}

.flags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.flag {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.flag:hover {
    transform: scale(1.1);
}

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

.requirements-box {
    background: #fff5f6;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #F3364F;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

.license-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin: 1rem 0;
}

.important-notes {
    background: #fff5f6;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #F3364F;
}

.special-notes {
    background: #F3364F;
    color: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.special-notes h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.special-notes img {
    width: 40px;
    height: 30px;
    margin: 0 5px;
    border-radius: 4px;
}

.translation-service {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #F3364F;
}

.translation-service h5 {
    color: #F3364F;
    font-weight: 600;
    margin-bottom: 1rem;
}

.jaf-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.jaf-logos img {
    max-height: 50px;
    width: auto;
}

.note-list {
    background: #fff5f6;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #F3364F;
}

.note-list ol {
    margin: 0;
    padding-left: 1.5rem;
}

.note-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .license-container {
        padding: 30px 0;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .card-body-custom {
        padding: 1.5rem;
    }

    .flags-container {
        gap: 10px;
        padding: 1rem;
    }

    .flag {
        width: 60px;
        height: 45px;
    }

    .group-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1rem;
    }
}
