/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand {
    text-align: left;
}

.nav-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.nav-icon i {
    font-size: 1.2rem;
    color: white;
}

.nav-icon span {
    font-size: 1.2rem;
    color: white;
}

.nav-icon.telegram {
    background: rgba(0, 136, 204, 0.2);
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.nav-icon.email {
    background: rgba(234, 67, 53, 0.2);
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.nav-icon.instagram {
    background: rgba(228, 64, 95, 0.2);
    border: 1px solid rgba(228, 64, 95, 0.3);
}

.nav-icon.linkedin {
    background: rgba(0, 119, 181, 0.2) !important;
    border: 1px solid rgba(0, 119, 181, 0.3) !important;
}

a.nav-icon.linkedin {
    background: rgba(0, 119, 181, 0.2) !important;
    border: 1px solid rgba(0, 119, 181, 0.3) !important;
}

.nav-icon.linkedin span {
    color: white !important;
}


.nav-icon:hover {
    transform: translateY(-2px) scale(1.1);
    opacity: 1;
}

.nav-icon.telegram:hover {
    background: rgba(0, 136, 204, 0.3);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.nav-icon.email:hover {
    background: rgba(234, 67, 53, 0.3);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.4);
}

.nav-icon.instagram:hover {
    background: rgba(228, 64, 95, 0.3);
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.4);
}

.nav-icon.linkedin:hover {
    background: rgba(0, 119, 181, 0.3);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 150px;
}

.stat i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-cta {
    margin-top: 2rem;
}

.coming-soon {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Performance Section */
.performance {
    background: #f8f9fa;
    padding: 5rem 0;
}

.myfxbook-widgets {
    max-width: 1100px;
    margin: 0 auto;
}

.widgets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.widget-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.widget-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.widget-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.08);
}

.widget-header {
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
    border-radius: 24px 24px 0 0;
}

.widget-card h3 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.widget-content {
    padding: 1.5rem;
}

.widget-card a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.widget-card a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52,152,219,0.1), rgba(155,89,182,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.widget-card a:hover::before {
    opacity: 1;
}

.widget-card a:hover {
    transform: scale(1.02);
}

.widget-card img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.widget-footer {
    text-align: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.widget-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.25), 0 4px 12px rgba(39, 174, 96, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255,255,255,0.2);
}

.verified-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.35), 0 6px 18px rgba(39, 174, 96, 0.2);
}

.verified-badge i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.performance-stats {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 300px;
}

.stat-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stat-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* About Section */
.about {
    background: white;
}

.about-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Brokers Section */
.brokers {
    background: #f8f9fa;
}

.broker-cards {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin-top: 3rem;
}

.broker-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.broker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.featured-broker {
    border: 2px solid #3498db;
}

.testing-phase {
    border: 2px solid #f39c12;
    opacity: 0.85;
}

.broker-badge.testing {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.btn-disabled {
    background: #95a5a6 !important;
    color: white !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.btn-disabled:hover {
    background: #95a5a6 !important;
    transform: none !important;
    box-shadow: none !important;
}

.testing-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #f39c12;
    font-style: italic;
    text-align: center;
}

.testing-note i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.broker-header {
    padding: 1rem 2rem 0;
    text-align: right;
}

.broker-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.broker-info {
    padding: 1rem 2rem;
    text-align: left;
}

.broker-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.broker-type {
    color: #3498db !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.broker-description {
    color: #555 !important;
    font-weight: 400 !important;
    line-height: 1.7;
    margin-bottom: 1.5rem !important;
    font-size: 1rem;
}

.broker-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: #27ae60;
    font-size: 1rem;
    width: 16px;
}

.broker-actions {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    background: #f8f9fa;
}

.broker-actions .btn {
    margin: 0.5rem;
    min-width: 200px;
}

.btn-special {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: white !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.btn-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-special:hover::before {
    left: 100%;
}

.btn-special:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4) !important;
    text-decoration: none !important;
    color: white !important;
}

.special-offer {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    animation: pulse 2s infinite;
}

.special-offer i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

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

.referral-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.referral-note i {
    color: #3498db;
    margin-right: 0.5rem;
}

.referral-note strong {
    color: #2c3e50;
    font-weight: 700;
    background: #e8f4f8;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Community Section */
.community {
    background: white;
}

.community-links {
    max-width: 600px;
    margin: 0 auto;
}

.community-link {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.community-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,136,204,0.3);
    text-decoration: none;
    color: white;
}

.community-link i:first-child {
    font-size: 3rem;
    margin-right: 1.5rem;
}

.link-content {
    flex-grow: 1;
}

.link-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.link-content p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.community-link i:last-child {
    font-size: 1.5rem;
    opacity: 0.7;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-icon span {
    font-size: 1.8rem;
    color: white;
}

.contact-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #005c99 100%);
}

.contact-icon.email {
    background: linear-gradient(135deg, #ea4335 0%, #d33b2c 100%);
}

.contact-icon.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #fd1d1d 25%, #ffdc80 100%);
}

.contact-icon.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%) !important;
    background-color: #0077b5 !important;
}

.contact-icon.linkedin span {
    color: white !important;
}

a.contact-icon.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%) !important;
    background-color: #0077b5 !important;
}


.contact-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.contact .section-title {
    color: white;
}

.contact .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.contact-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f6fa8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52,152,219,0.4);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    text-decoration: none;
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Footer Social Media Icons */
.footer-social {
    text-align: center;
}

.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-social-icon i {
    font-size: 1.3rem;
    color: white;
}

.footer-social-icon span {
    font-size: 1.3rem;
    color: white;
}

.footer-social-icon.telegram {
    background: rgba(0, 136, 204, 0.2);
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.footer-social-icon.email {
    background: rgba(234, 67, 53, 0.2);
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.footer-social-icon.instagram {
    background: rgba(228, 64, 95, 0.2);
    border: 1px solid rgba(228, 64, 95, 0.3);
}

.footer-social-icon.linkedin {
    background: rgba(0, 119, 181, 0.2);
    border: 1px solid rgba(0, 119, 181, 0.3);
}


.footer-social-icon:hover {
    transform: translateY(-2px) scale(1.1);
    opacity: 1;
}

.footer-social-icon.telegram:hover {
    background: rgba(0, 136, 204, 0.3);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.footer-social-icon.email:hover {
    background: rgba(234, 67, 53, 0.3);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.4);
}

.footer-social-icon.instagram:hover {
    background: rgba(228, 64, 95, 0.3);
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.4);
}

.footer-social-icon.linkedin:hover {
    background: rgba(0, 119, 181, 0.3);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-brand {
        text-align: center;
    }
    
    .nav-contact {
        gap: 0.8rem;
    }
    
    .nav-icon {
        width: 35px;
        height: 35px;
    }
    
    .nav-icon i {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .widgets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .widget-header {
        padding: 1rem 1rem 0.8rem;
    }
    
    .widget-card h3 {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .widget-content {
        padding: 1rem;
    }
    
    .widget-footer {
        margin-top: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .verified-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .broker-cards {
        grid-template-columns: 1fr;
    }
    
    .broker-info {
        padding: 1rem 1.5rem;
    }
    
    .broker-info h3 {
        font-size: 1.5rem;
    }
    
    .broker-actions {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .broker-actions .btn {
        min-width: auto;
        width: 100%;
        margin: 0.3rem 0;
    }
    
    .broker-features {
        margin-bottom: 1rem;
    }
    
    .special-offer {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }
    
    .btn-special {
        font-size: 0.9rem !important;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social-icons {
        gap: 0.8rem;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-icon i {
        font-size: 1.1rem;
    }
    
    .community-link {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .community-link i:first-child {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .contact-icons {
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stat {
        min-width: 120px;
        padding: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}
