* {
    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;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ff8c42;
}

.logo-icon {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff8c42;
}

.login-btn {
    padding: 10px 30px;
    background: #fff;
    border: 2px solid #ff8c42;
    color: #ff8c42;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #ff8c42;
    color: #fff;
}

.sub-nav {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.sub-nav a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.sub-nav a:hover {
    color: #ff8c42;
}

.hero {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-label {
    color: #ff8c42;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-tag {
    background: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #ffa07a 0%, #ff6b9d 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
}

.banner-section {
    padding: 60px 0;
}

.purple-banner {
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.purple-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.banner-content {
    flex: 1;
    z-index: 1;
}

.banner-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: #ffd700;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-btn {
    padding: 15px 40px;
    background: #fff;
    color: #6b46c1;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.laptop-mockup {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.categories-section,
.steps-section,
.trending-section,
.features-section,
.faq-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.category-card {
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-card h4 {
    font-size: 18px;
    font-weight: 600;
}

.view-more-btn {
    display: block;
    margin: 0 auto;
    padding: 15px 50px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.invitation-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.invitation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 300px;
    border-radius: 15px 15px 0 0;
}

.card-title {
    padding: 15px 20px 5px;
    font-weight: 600;
    color: #333;
}

.card-price {
    padding: 0 20px 15px;
    color: #ff8c42;
    font-weight: 700;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.4;
}

.feature-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.feature-btn {
    padding: 10px 30px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.feature-btn:hover {
    transform: scale(1.05);
}

.faq-section {
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 30px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 24px;
    color: #ff8c42;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.footer {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-column p {
    opacity: 0.9;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.app-btn {
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.app-btn:hover {
    background: rgba(255,255,255,0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-label {
        font-size: 14px;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .banner-content h2 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .laptop-mockup {
        width: 300px;
        height: 190px;
    }

    .section-subtitle {
        font-size: 28px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trending-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-section,
    .steps-section,
    .trending-section,
    .features-section,
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 12px;
    }

    .header {
        box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    }

    .nav-content {
        padding: 12px 0;
    }

    .logo {
        font-size: 20px;
        gap: 8px;
    }

    .logo-text {
        display: none;
    }

    .logo-icon {
        font-size: 24px;
    }

    .nav-menu {
        display: none;
    }

    .login-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .sub-nav {
        display: none;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        padding: 0 10px;
    }

    .hero-label {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 36px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .feature-tag {
        padding: 6px 14px;
        font-size: 12px;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-image {
        width: 100%;
        margin-top: 20px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .banner-section {
        padding: 40px 0;
    }

    .purple-banner {
        flex-direction: column;
        padding: 30px 20px;
        border-radius: 15px;
        gap: 25px;
    }

    .purple-banner::before {
        top: -30%;
        right: -30%;
        width: 150%;
        height: 150%;
    }

    .banner-content h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .banner-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .banner-image {
        width: 100%;
    }

    .laptop-mockup {
        width: 100%;
        max-width: 250px;
        height: 160px;
    }

    .categories-section,
    .steps-section,
    .trending-section,
    .features-section,
    .faq-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .section-description {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .category-card {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .category-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .category-card h4 {
        font-size: 14px;
    }

    .view-more-btn {
        padding: 12px 35px;
        font-size: 14px;
        margin-top: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-icon {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .step-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .step-card p {
        font-size: 13px;
    }

    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .invitation-card {
        border-radius: 12px;
    }

    .card-image {
        height: 220px;
        border-radius: 12px 12px 0 0;
    }

    .card-title {
        padding: 10px 15px 5px;
        font-size: 13px;
    }

    .card-price {
        padding: 0 15px 10px;
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .feature-box {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .feature-content h4 {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .feature-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .feature-btn {
        padding: 8px 25px;
        font-size: 12px;
    }

    .faq-section {
        background: #f8f9fa;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 0 20px 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-column p {
        font-size: 13px;
    }

    .social-links {
        gap: 12px;
        margin: 15px 0;
    }

    .social-icon {
        font-size: 20px;
    }

    .app-buttons {
        gap: 8px;
        margin-top: 12px;
    }

    .app-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }

    .nav-content {
        padding: 10px 0;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        font-size: 20px;
    }

    .login-btn {
        padding: 7px 15px;
        font-size: 12px;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-text {
        padding: 0;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-features {
        gap: 8px;
        margin-bottom: 15px;
        justify-content: center;
    }

    .feature-tag {
        padding: 5px 12px;
        font-size: 10px;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .phone-mockup {
        width: 150px;
        height: 300px;
        padding: 10px;
    }

    .banner-section {
        padding: 30px 0;
    }

    .purple-banner {
        padding: 20px 15px;
        border-radius: 12px;
        gap: 20px;
    }

    .banner-content h2 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .banner-content p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .banner-btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    .laptop-mockup {
        width: 100%;
        max-width: 200px;
        height: 130px;
    }

    .categories-section,
    .steps-section,
    .trending-section,
    .features-section,
    .faq-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .section-description {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .category-card {
        padding: 20px 12px;
        border-radius: 10px;
    }

    .category-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .category-card h4 {
        font-size: 12px;
        font-weight: 600;
    }

    .view-more-btn {
        padding: 10px 30px;
        font-size: 12px;
        margin-top: 15px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .step-card {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .step-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .step-card h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .step-card p {
        font-size: 12px;
    }

    .trending-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .card-image {
        height: 180px;
        border-radius: 10px 10px 0 0;
    }

    .card-title {
        padding: 8px 12px 4px;
        font-size: 12px;
    }

    .card-price {
        padding: 0 12px 8px;
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .feature-box {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .feature-content h4 {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .feature-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .feature-btn {
        padding: 7px 20px;
        font-size: 11px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 13px;
    }

    .faq-icon {
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        max-height: 350px;
        padding: 0 15px 12px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    .footer {
        padding: 30px 0 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-column ul li {
        margin-bottom: 6px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .footer-column p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .social-links {
        gap: 10px;
        margin: 12px 0;
    }

    .social-icon {
        font-size: 18px;
    }

    .app-buttons {
        gap: 6px;
        margin-top: 10px;
    }

    .app-btn {
        padding: 7px 14px;
        font-size: 11px;
    }

    .footer-bottom {
        padding-top: 12px;
        font-size: 11px;
    }
}
