/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c3e50;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Animation */
.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.advanced-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Animated Background Particles */
.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 10%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 60%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 30%; animation-delay: 5s; }
.particle:nth-child(7) { top: 15%; left: 50%; animation-delay: 6s; }
.particle:nth-child(8) { top: 85%; left: 40%; animation-delay: 7s; }

/* Main Card Stack */
.card-stack {
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
    animation: stackRotate 12s ease-in-out infinite;
}

.trading-card {
    position: absolute;
    width: 140px;
    height: 196px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trading-card:hover {
    transform: translateY(-10px) rotateY(15deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-1 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    transform: translateZ(20px) rotateY(-10deg);
    animation: card1Animation 8s ease-in-out infinite;
    z-index: 3;
}

.card-2 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #e55039 100%);
    transform: translateZ(0px) rotateY(5deg) translateX(-20px);
    animation: card2Animation 8s ease-in-out infinite 1s;
    z-index: 2;
}

.card-3 {
    background: linear-gradient(135deg, #4834d4 0%, #686de0 50%, #30336b 100%);
    transform: translateZ(-20px) rotateY(15deg) translateX(-40px);
    animation: card3Animation 8s ease-in-out infinite 2s;
    z-index: 1;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: cardShine 3s ease-in-out infinite;
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    text-align: center;
}

.card-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-price {
    font-size: 18px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Price Comparison Overlay */
.price-overlay {
    position: absolute;
    top: 20px;
    right: -50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    min-width: 250px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 15;
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    animation: overlayAppear 1s ease-out 2s forwards;
}

.price-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
}

.scan-line {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    animation: scanPulse 1.5s ease-in-out infinite;
}

.price-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(248, 249, 250, 0.9);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-20px);
    color: #2c3e50;
}

.price-row:nth-child(1) { animation: priceRowAppear 0.5s ease-out 3s forwards; }
.price-row:nth-child(2) { animation: priceRowAppear 0.5s ease-out 3.3s forwards; }
.price-row.best-deal { 
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    animation: priceRowAppear 0.5s ease-out 3.6s forwards, bestDealPulse 2s ease-in-out 4s infinite;
}

.seller {
    font-weight: 600;
    color: #2c3e50;
}

.price {
    font-weight: 700;
    color: #2c3e50;
}

.best-deal .seller,
.best-deal .price {
    color: white;
}

.savings {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

/* Feature Indicators */
.feature-indicators {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.indicator-pulse {
    width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    position: relative;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.indicator-pulse::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #3498db;
    border-radius: 50%;
    animation: indicatorRipple 2s ease-in-out infinite;
}

.indicator-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.indicator-1 {
    top: 15%;
    left: 15%;
    animation: indicatorAppear 0.8s ease-out 4.5s forwards;
    opacity: 0;
}

.indicator-2 {
    top: 50%;
    right: 10%;
    animation: indicatorAppear 0.8s ease-out 5s forwards;
    opacity: 0;
}

.indicator-3 {
    bottom: 20%;
    left: 20%;
    animation: indicatorAppear 0.8s ease-out 5.5s forwards;
    opacity: 0;
}

/* Data Flow Animation */
.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 8;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #3498db, transparent);
    opacity: 0;
    animation: dataFlow 2s ease-in-out infinite;
}

.stream-1 {
    top: 20%;
    left: 30%;
    animation-delay: 6s;
}

.stream-2 {
    top: 60%;
    right: 25%;
    animation-delay: 6.5s;
}

.stream-3 {
    bottom: 30%;
    left: 60%;
    animation-delay: 7s;
}

/* Advanced Animations */
@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes stackRotate {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(10deg) rotateX(5deg); }
    50% { transform: rotateY(0deg) rotateX(10deg); }
    75% { transform: rotateY(-10deg) rotateX(5deg); }
}

@keyframes card1Animation {
    0%, 100% { transform: translateZ(20px) rotateY(-10deg) scale(1); }
    50% { transform: translateZ(30px) rotateY(-5deg) scale(1.05); }
}

@keyframes card2Animation {
    0%, 100% { transform: translateZ(0px) rotateY(5deg) translateX(-20px) scale(1); }
    50% { transform: translateZ(10px) rotateY(10deg) translateX(-15px) scale(1.02); }
}

@keyframes card3Animation {
    0%, 100% { transform: translateZ(-20px) rotateY(15deg) translateX(-40px) scale(1); }
    50% { transform: translateZ(-10px) rotateY(20deg) translateX(-35px) scale(1.01); }
}

@keyframes cardShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

@keyframes overlayAppear {
    0% { 
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    100% { 
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes scanPulse {
    0%, 100% { 
        transform: scaleX(1);
        opacity: 1;
    }
    50% { 
        transform: scaleX(1.5);
        opacity: 0.7;
    }
}

@keyframes priceRowAppear {
    0% { 
        opacity: 0;
        transform: translateX(-20px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bestDealPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 rgba(46, 204, 113, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
    }
}

@keyframes indicatorAppear {
    0% { 
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }
    100% { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes indicatorPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes indicatorRipple {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    100% { 
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes dataFlow {
    0% { 
        opacity: 0;
        transform: translateY(-30px);
    }
    50% { 
        opacity: 1;
        transform: translateY(0);
    }
    100% { 
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Showcase Section */
.showcase-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.showcase-text {
    max-width: 800px;
}

.showcase-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.showcase-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.showcase-text ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.showcase-text li {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.showcase-image {
    width: 100%;
    max-width: none;
}

.showcase-img {
    width: 100%;
    max-width: 2400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.showcase-img:hover {
    transform: translateY(-5px);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Features Section */
.features-section {
    background: white;
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Supported Games */
.supported-games {
    padding: 4rem 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.game-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.game-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Page Content */
.page-content {
    padding: 2rem 0 4rem;
    background: white;
    min-height: calc(100vh - 200px);
}

.page-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.page-content h2 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.page-content h3 {
    color: #34495e;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.3rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* About Page Specific */
.about-intro,
.about-story {
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    background: #f8f9fa;
}

.tech-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tech-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.about-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* FAQ Page Specific */
.faq-section {
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Contact Page Specific */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-method h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.response-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.response-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.help-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.community-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
    background: white;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .steps,
    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
}
