/* Global Styles */
:root {
    --primary-color: #4E6BFF;
    --secondary-color: #FF6B4E;
    --dark-color: #1A1B25;
    --light-color: #F8F9FA;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: var(--light-color);
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link.btn {
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.nav-link.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.nav-link.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.nav-link.btn-primary:hover {
    background-color: #3D54D9;
    border-color: #3D54D9;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background-image: url('../img/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 80vh;
    min-height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    font-family: var(--font-secondary);
    color: white;
    line-height: 1.2;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.35rem;
    margin: 0 auto;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-lg {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    margin-top: 1rem;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-section .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: transparent;
    border-color: white;
}

/* Get Started Section */
.get-started-section {
    background-color: var(--light-color);
}

.section-title {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.section-divider {
    position: relative;
    height: 20px;
    margin: 20px 0 40px;
}

.section-divider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.divider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--light-color);
    padding: 0 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.step-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.step-card h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-wrapper img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(78, 107, 255, 0.15);
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: translateY(-10px);
}

.platform-features {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(78, 107, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(78, 107, 255, 0.2);
    background: var(--primary-color);
    color: white;
}

.about-content {
    padding: 20px;
}

.feature-grid {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 107, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 107, 255, 0.1);
    border-color: rgba(78, 107, 255, 0.2);
    background: linear-gradient(145deg, #ffffff, #ffffff);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6c8bff);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-right: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(78, 107, 255, 0.2);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(78, 107, 255, 0.3);
}

.feature-text {
    flex-grow: 1;
}

.feature-text h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .experience-badge {
        right: 20px;
        bottom: 20px;
    }
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.responsible-gaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.responsible-gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.rg-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 107, 255, 0.1);
    overflow: hidden;
}

.rg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 107, 255, 0.1);
    border-color: var(--primary-color);
}

.rg-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #6c8bff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.rg-card:hover .rg-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(78, 107, 255, 0.2);
}

.rg-card h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.rg-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.rg-hover-content {
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.rg-card:hover .rg-hover-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.rg-hover-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.rg-hover-content ul li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.rg-hover-content ul li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.support-resources {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.support-badge {
    background: white;
    border-radius: 30px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 107, 255, 0.1);
}

.support-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(78, 107, 255, 0.15);
    border-color: var(--primary-color);
}

.support-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.support-badge span {
    color: var(--dark-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .responsible-gaming-grid {
        grid-template-columns: 1fr;
    }
    
    .support-resources {
        flex-direction: column;
        align-items: center;
    }
    
    .support-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.faq-category h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: var(--primary-color);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 107, 255, 0.1);
    height: 100%;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 107, 255, 0.1);
    border-color: var(--primary-color);
}

.faq-card-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-bottom: 1px solid rgba(78, 107, 255, 0.1);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #6c8bff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-card:hover .faq-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(78, 107, 255, 0.2);
}

.faq-card-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.4;
}

.faq-card-content {
    padding: 25px;
}

.faq-card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-card-content p:last-child {
    margin-bottom: 0;
}

.faq-card-content ul,
.faq-card-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-card-content li {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-card-content li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-category h3 {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
}

/* Age Disclaimer */
.footer-disclaimer {
    background-color: #FF6B4E;
    padding: 15px 0;
}

.disclaimer-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.disclaimer-text i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Footer Links */
.footer-links {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-nav a:hover::after {
    width: 100%;
}

/* License Info */
.footer-license {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.license-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Certifications */
.footer-certifications {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cert-img:hover {
    opacity: 1;
}

/* Copyright */
.footer-copyright {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .cert-images {
        gap: 20px;
    }

    .cert-img {
        height: 30px;
    }

    .license-text {
        font-size: 0.8rem;
        padding: 0 15px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-content {
    min-height: 600px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 107, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 107, 255, 0.1);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6c8bff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(78, 107, 255, 0.2);
}

.contact-card h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Join Page Styles */
.join-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.join-content {
    min-height: 700px;
}

.join-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 107, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 107, 255, 0.1);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6c8bff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(78, 107, 255, 0.2);
}

.benefit-card h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.join-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.join-form-wrapper h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid rgba(78, 107, 255, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 107, 255, 0.1);
}

.form-check {
    margin: 15px 0;
}

.form-check-label {
    color: #666;
    font-size: 0.95rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-form-wrapper,
    .join-form-wrapper {
        padding: 25px;
    }
    
    .contact-info,
    .join-benefits {
        margin-bottom: 30px;
    }
}

/* Content Card Styles */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-card h1 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.content-card h2 {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px;
}

.content-card h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.content-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-card ul {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-card ul li {
    margin-bottom: 10px;
}

/* Guidelines Grid */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.guideline-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(78, 107, 255, 0.1);
    transition: all 0.3s ease;
}

.guideline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 107, 255, 0.1);
    border-color: var(--primary-color);
}

.guideline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #6c8bff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.guideline-item h3 {
    margin: 0 0 15px;
    font-size: 1.2rem;
}

.guideline-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Support Resources */
.support-resources-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.support-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.support-contact-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(78, 107, 255, 0.1);
    transition: all 0.3s ease;
}

.support-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 107, 255, 0.1);
    border-color: var(--primary-color);
}

.support-contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.support-contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.support-contact-item p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Responsible Gaming Notice */
.responsible-gaming-notice {
    background: linear-gradient(135deg, var(--primary-color), #6c8bff);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.responsible-gaming-notice h3 {
    color: white;
    margin-bottom: 15px;
}

.responsible-gaming-notice p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-card {
        padding: 25px;
    }

    .content-card h1 {
        font-size: 2rem;
    }

    .content-card h2 {
        font-size: 1.5rem;
    }

    .content-card h3 {
        font-size: 1.2rem;
    }

    .guidelines-grid {
        grid-template-columns: 1fr;
    }

    .support-contacts {
        grid-template-columns: 1fr;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }
    
    .hero-section .lead {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-section img {
        margin-top: 40px;
    }
    
    .nav-item {
        margin: 10px 0;
    }
}

/* Button Styles */
.btn {
    font-weight: 500;
    letter-spacing: 0.5px;
} 