@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-section {
    animation: fadeIn 0.8s ease;
}

.sidebar {
    animation: slideInLeft 0.6s ease;
}

.main-section > section {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.main-section > section:nth-child(2) {
    animation-delay: 0.1s;
}

.main-section > section:nth-child(3) {
    animation-delay: 0.2s;
}

.main-section > section:nth-child(4) {
    animation-delay: 0.3s;
}

.course-list li a,
.section-list li a {
    position: relative;
    display: block;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.course-list li a::before,
.section-list li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #1e4096;
    font-weight: bold;
}

.course-list li a:hover::before,
.section-list li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.course-list li a:hover,
.section-list li a:hover {
    padding-left: 35px;
    color: #1e4096;
    font-weight: 600;
}

.review-card,
.instructor-card,
.featured-course-card,
.quick-link-card,
.event-card {
    position: relative;
    overflow: hidden;
}

.review-card::after,
.instructor-card::after,
.featured-course-card::after,
.quick-link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 150, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.review-card:hover::after,
.instructor-card:hover::after,
.featured-course-card:hover::after,
.quick-link-card:hover::after {
    opacity: 1;
}

.main-section h3,
.reviews-section h3,
.instructors-section h3,
.featured-courses-section h3,
.events-section h3,
.news-section h3 {
    position: relative;
    display: inline-block;
    width: 100%;
}

.main-section h3::before,
.reviews-section h3::before,
.instructors-section h3::before,
.featured-courses-section h3::before,
.events-section h3::before,
.news-section h3::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1e4096);
    border-radius: 10px;
}

[dir="ltr"] .main-section h3::before,
[dir="ltr"] .reviews-section h3::before,
[dir="ltr"] .instructors-section h3::before,
[dir="ltr"] .featured-courses-section h3::before,
[dir="ltr"] .events-section h3::before,
[dir="ltr"] .news-section h3::before {
    left: auto;
    right: -40px;
    background: linear-gradient(90deg, #1e4096, transparent);
}

.course-badge {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.course-badge.new {
    animation: bounce 2s ease-in-out infinite;
}

.course-badge.specialized {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(211, 47, 47, 0.5);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.cta-button,
.course-btn,
.link-btn,
.event-register-btn,
.portal-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before,
.course-btn::before,
.link-btn::before,
.event-register-btn::before,
.portal-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.cta-button:hover::before,
.course-btn:hover::before,
.link-btn:hover::before,
.event-register-btn:hover::before,
.portal-btn:hover::before {
    width: 300px;
    height: 300px;
}

.quick-link-card i,
.stat-icon i,
.course-icon,
.instructor-card i {
    transition: all 0.3s ease;
}

.quick-link-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.stat-card:hover .stat-icon i {
    transform: scale(1.15) rotate(-5deg);
}

.featured-course-card:hover .course-icon {
    transform: scale(1.1) rotate(3deg);
}

.instructor-card:hover i {
    transform: scale(1.1);
}

.sidebar:hover,
.main-section:hover,
.hero-section:hover {
    box-shadow: 0 15px 50px rgba(30, 64, 150, 0.12);
}

.news-ticker {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #1e4096;
}

.logo {
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e4096, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.stat-number {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    font-weight: 800;
    letter-spacing: 2px;
}

.review-rating i {
    transition: all 0.2s ease;
}

.review-card:hover .review-rating i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 3px #fbbf24);
}

.review-rating i:nth-child(1) { transition-delay: 0s; }
.review-rating i:nth-child(2) { transition-delay: 0.1s; }
.review-rating i:nth-child(3) { transition-delay: 0.2s; }
.review-rating i:nth-child(4) { transition-delay: 0.3s; }
.review-rating i:nth-child(5) { transition-delay: 0.4s; }

.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(180deg, transparent, #1e4096);
    opacity: 0.1;
}

.sidebar::-webkit-scrollbar {
    width: 12px !important;           
    display: block !important;        
}

.sidebar::-webkit-scrollbar-track {
    background: #f5f7fa !important;   
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #1e4096 !important;   
    border-radius: 10px;
    min-height: 40px;                 
}

.sidebar {
    scrollbar-width: auto !important;
    scrollbar-color: #1e4096 #f5f7fa !important;
}

.featured-course-card,
.quick-link-card {
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.featured-course-card:hover {
    border-top-color: #1e4096;
}

.quick-link-card:hover {
    border-top-color: #2c5aa0;
}

.event-date-badge {
    box-shadow: 
        0 4px 6px rgba(30, 64, 150, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.event-card:hover .event-date-badge {
    transform: translateZ(10px) scale(1.05);
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.newsletter-form button {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: white;
    border-radius: 10px;
    animation: slideIn 0.3s ease;
}

body {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid #1e4096;
    outline-offset: 3px;
    border-radius: 4px;
}

@media print {
    .professional-touches,
    .animations,
    .hover-effects {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .sidebar,
    .main-section,
    .review-card,
    .instructor-card,
    .featured-course-card {
        border: 3px solid #000;
    }
}

@media (max-width: 768px) {
    
    .sidebar {
        animation: fadeIn 0.3s ease;
    }
    
    .main-section > section {
        animation: fadeInUp 0.4s ease;
    }

    .course-list li a,
    .section-list li a {
        padding: 12px;
        font-size: 1.05rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

.services-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 80px 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    color: #1e4096;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #1e4096;
    box-shadow: 0 12px 30px rgba(30, 64, 150, 0.15);
    text-decoration: none;
    color: inherit;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e4096 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.clients-section {
    padding: 80px 40px;
    background: white;
    border-radius: 20px;
    margin: 40px 0;
}

.clients-category {
    margin-bottom: 60px;
}

.clients-category:last-child {
    margin-bottom: 0;
}

.clients-category-title {
    font-size: 1.8rem;
    color: #1e4096;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0b429;
    display: inline-block;
    width: 100%;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.client-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8ecf2;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 150, 0.05), transparent);
    transition: left 0.5s ease;
}

.client-card:hover::before {
    left: 100%;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: #1e4096;
    box-shadow: 0 10px 25px rgba(30, 64, 150, 0.12);
}

.client-logo-wrapper {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.client-logo {
    max-width: 75px !important;
    max-height: 75px !important;
    width: auto;
    height: auto;
    object-fit: contain !important;
    transition: all 0.3s ease;
    display: block;
    margin: auto;
    box-sizing: border-box;
}

.client-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e4096 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.1);
}

.client-card:hover .client-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, #2563eb 0%, #1e4096 100%);
}

.client-card h5 {
    font-size: 0.9rem;
    color: #2c3e50;
    margin: 0;
    margin-top: 10px;
    font-weight: 600;
    line-height: 1.4;
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accreditations-full-section {
    background: linear-gradient(135deg, #1e4096 0%, #2563eb 100%);
    padding: 80px 40px;
    border-radius: 20px;
    margin: 40px 0;
    color: white;
}

.accreditations-full-section .section-title-centered,
.accreditations-full-section .section-subtitle {
    color: white;
}

.accreditations-category {
    margin-bottom: 60px;
}

.accreditations-category:last-child {
    margin-bottom: 0;
}

.accreditations-category-title {
    font-size: 1.8rem;
    color: #f0b429;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.accreditation-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: visible;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.accreditation-card.featured {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 100%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.accreditation-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f0b429, #ffd700, #f0b429);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.accreditation-card:hover::before {
    opacity: 1;
}

.accreditation-card:hover {
    transform: translateY(-8px);
}

.accreditation-card > * {
    position: relative;
    z-index: 1;
}

.accreditation-logo-wrapper {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.accreditation-logo {
    max-width: 95px !important;
    max-height: 95px !important;
    width: auto;
    height: auto;
    object-fit: contain !important;
    transition: all 0.3s ease;
    display: block;
    margin: auto;
    box-sizing: border-box;
}

.accreditation-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e4096 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 150, 0.3);
}

.accreditation-card.featured .accreditation-badge {
    background: linear-gradient(135deg, #f0b429 0%, #ffd700 100%);
    box-shadow: 0 4px 20px rgba(240, 180, 41, 0.4);
}

.accreditation-card:hover .accreditation-logo {
    transform: scale(1.1);
}

.accreditation-card:hover .accreditation-badge {
    transform: rotateY(360deg) scale(1.1);
}

.accreditation-card h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 15px 0 12px;
    font-weight: 700;
    flex-shrink: 0;
    display: block;
    overflow: visible;
    text-overflow: unset;
    word-wrap: break-word;
    line-height: 1.5;
}

.accreditation-desc {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
    flex-shrink: 0;
    word-wrap: break-word;
    overflow: visible;
}

.international-relations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.relation-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #f0b429;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.relation-logo-wrapper {
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    max-width: 90px;
    max-height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: visible;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

.relation-logo.aacid-logo {
    max-width: 90px !important;
    max-height: 90px !important;
    min-width: 70px;
    min-height: 70px;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center;
    filter: none !important;
    position: relative;
    z-index: 10;
}

.relation-logo {
    max-width: 85px !important;
    max-height: 85px !important;
    min-width: 50px;
    min-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain !important;
    object-position: center;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    display: block;
    margin: auto;
    box-sizing: border-box;
}

.relation-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: #f0b429;
    transition: all 0.3s ease;
}

.relation-card:hover .relation-logo {
    transform: scale(1.15);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}

.relation-card:hover .relation-icon {
    background: #f0b429;
    color: white;
    transform: scale(1.15);
}

.relation-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
}

.relation-card h4 {
    font-size: 1rem;
    color: white;
    margin: 0;
    margin-top: 10px;
    font-weight: 600;
    line-height: 1.5;
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-section {
    background: linear-gradient(135deg, #1e4096 0%, #2563eb 100%);
    padding: 80px 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: #f0b429;
    color: #1e4096;
    border: 2px solid #f0b429;
}

.cta-btn.primary:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 180, 41, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #1e4096;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .accreditations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .accreditation-card {
        min-height: 260px;
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .section-title-centered {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .services-section,
    .clients-section,
    .accreditations-full-section,
    .cta-section {
        padding: 50px 25px;
    }
    
    .services-grid,
    .clients-grid,
    .accreditations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .accreditation-card {
        min-height: auto;
        padding: 25px 20px;
    }
    
    .accreditation-card h4 {
        font-size: 1.05rem;
        margin: 12px 0 10px;
    }
    
    .accreditation-desc {
        font-size: 0.9rem;
    }
    
    .international-relations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .section-title-centered {
        font-size: 1.7rem;
    }
    
    .clients-category-title,
    .accreditations-category-title {
        font-size: 1.4rem;
    }
    
    .service-icon,
    .client-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .accreditation-badge {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
    }
}
