:root {
    --primary-color: #003366;
    --secondary-color: #0056b3;
    --accent-color: #ffd700;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(0,51,102,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.news-card {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.profile-preview {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
}

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

.article-link {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.content-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.highlight-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

footer {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    padding: 3rem 0;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--accent-color) !important;
    text-decoration: none;
}

.gallery-image {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-image img {
    transition: all 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.social-links i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.youtube-section {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 4rem 0;
}

.youtube-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.youtube-stats {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.youtube-stats .number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.social-feed {
    height: 400px;
    overflow-y: auto;
    background: white;
    border-radius: 10px;
    padding: 1rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .content-section {
        margin: 2rem 0;
        padding: 1rem 0;
    }
}

/* Profile Page Styles */
.profile-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.profile-header img {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.profile-header img:hover {
    transform: scale(1.02);
}

.profile-data ul li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.profile-data ul li strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.profile-content {
    line-height: 1.8;
}

.profile-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-box {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.achievement-list {
    list-style: none;
    padding-left: 0;
}

.achievement-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.achievement-list li:before {
    content: "🏆";
    position: absolute;
    left: 0;
    top: 0;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .profile-header {
        padding: 2rem 0;
    }
    
    .profile-data ul li {
        font-size: 1rem;
    }
    
    .highlight-box {
        margin-top: 2rem;
    }
}

/* Profile Page Interactive Elements */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Achievement List Animation */
.achievement-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.achievement-list li.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Gallery Image Hover Effects */
.gallery-image {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.gallery-image:hover::before {
    opacity: 1;
}

.gallery-image:hover img {
    filter: brightness(0.8);
}

/* Career Page Styles */
.career-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.career-hero img {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.career-hero img:hover {
    transform: scale(1.02);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 4rem);
    background: var(--primary-color);
    top: 2rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    z-index: 2;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 1 !important;
    transform: none !important;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -60px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.timeline-content.highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-left: 4px solid var(--accent-color);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-content::before {
        left: -50px !important;
        right: auto !important;
    }
}

/* Achievement Cards */
.achievements-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.achievement-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.achievement-icon i {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.achievement-card h3 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.achievement-card .achievement-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.achievement-card .achievement-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 1 !important;
    transform: none !important;
}

.achievement-card .achievement-list li:before {
    content: "🏆";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.achievement-card .achievement-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .achievements-section {
        padding: 2rem 0;
    }
    
    .achievement-card {
        margin-bottom: 2rem;
    }
    
    .achievement-card h3 {
        font-size: 1.3rem;
    }
    
    .achievement-card .achievement-list li {
        font-size: 1rem;
    }
}

/* Media Section */
.media-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.media-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.media-list {
    list-style: none;
    padding: 0;
}

.media-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.media-list li:last-child {
    border-bottom: none;
}

.media-date {
    display: block;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.media-title {
    display: block;
    margin-top: 0.3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }
    
    .timeline-item::before {
        left: 0;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 90%;
        margin-left: auto !important;
    }
    
    .achievement-card {
        margin-bottom: 1rem;
    }
}

/* Training Page Styles */
.training-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.training-hero img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.training-hero img:hover {
    transform: scale(1.02);
}

.training-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.principle-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.principle-icon i {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.principle-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.schedule-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-table table {
    margin-bottom: 0;
}

.schedule-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.schedule-table td {
    vertical-align: middle;
}

.nutrition-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.nutrition-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.nutrition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.nutrition-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.nutrition-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.sidebar-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.supplement-list {
    display: grid;
    gap: 1.5rem;
}

.supplement-item {
    text-align: center;
}

.supplement-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.supplement-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tips-list {
    display: grid;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tip-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.tip-item p {
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .training-hero {
        padding: 2rem 0;
    }
    
    .training-principles {
        grid-template-columns: 1fr;
    }
    
    .nutrition-info {
        grid-template-columns: 1fr;
    }
    
    .principle-card,
    .nutrition-card {
        padding: 1.5rem;
    }
    
    .sidebar-section {
        margin-top: 2rem;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.gallery-hero img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gallery-hero img:hover {
    transform: scale(1.02);
}

.gallery-filter {
    background: white;
    border-bottom: 1px solid #eee;
}

.filter-buttons .btn {
    margin: 0 0.5rem;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.filter-buttons .btn.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.gallery-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 1rem;
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    margin: 0;
}

.instagram-feed {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#load-more {
    transition: all 0.3s ease;
}

#load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 1.1rem;
    font-weight: bold;
}

.lb-data .lb-number {
    font-size: 0.9rem;
}

.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 2rem 0;
    }
    
    .filter-buttons .btn {
        margin: 0.25rem;
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .gallery-card img {
        height: 250px;
    }
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.instagram-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.instagram-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-info {
    color: white;
    text-align: center;
}

.instagram-info i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instagram-info span {
    display: block;
    font-size: 0.9rem;
}

/* Q&A Page Styles */
.qa-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.qa-hero img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.qa-hero img:hover {
    transform: scale(1.02);
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.qa-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.qa-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

.accordion-body {
    background-color: #f8f9fa;
    padding: 1.5rem;
}

.qa-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.qa-form form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
}

@media (max-width: 768px) {
    .qa-hero {
        padding: 2rem 0;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-card i {
        font-size: 2rem;
    }
    
    .qa-form form {
        padding: 1.5rem;
    }
} 