/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-size: 16px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #041d62;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #062a7a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fab519;
}

.btn-secondary:hover {
    background-color: #e6a317;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #041d62;
    color: #041d62;
}

.btn-outline:hover {
    background-color: #041d62;
    color: white;
}

/* Language Switcher */
.language-switcher {
    background-color: #fab519;
    color: #041d62;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.language-switcher:hover {
    background-color: #e6a317;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(250, 181, 25, 0.3);
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    background: none;
    background-color: transparent;
    background-image: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #041d62;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #fab519;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fab519;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #041d62;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 3px solid #fab519;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
}

.main-logo {
    height: 150px;
    width: auto;
    max-width: 300px;
    background-color: transparent !important;
    background: none !important;
    background-image: none !important;
    animation: slowRotate 20s linear infinite;
    mix-blend-mode: multiply;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fab519;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: white;
    text-align: justify;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #fab519;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    min-width: 200px;
}

.hero-buttons .btn-primary {
    background-color: #fab519;
    border: 2px solid #fab519;
    color: #041d62;
}

.hero-buttons .btn-primary:hover {
    background-color: #e6a317;
    border-color: #e6a317;
}

.hero-buttons .btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.hero-buttons .btn-outline:hover {
    background-color: white;
    color: #041d62;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #041d62 !important;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.section-beautique {
    font-size: 2.5rem;
    font-weight: bold;
    color: white !important;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.title-underline {
    width: 100px;
    height: 4px;
    background-color: #fab519;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-image {
    margin-bottom: 2rem;
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.text-block {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid #fab519;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-block h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #041d62;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #ecf0f1;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #fab519;
}

.feature-image {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .product-img {
    transform: scale(1.05);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #041d62;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #ecf0f1;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #fab519;
}

.partner-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.partner-img {
    max-height: 80px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.partner-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #041d62;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.partners-footer {
    text-align: center;
    padding: 2rem;
    background: #041d62;
    border-radius: 8px;
    color: white;
}

.partners-footer p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Slogans Section */
.slogans {
    padding: 6rem 0;
    background-color: #ffffff;
}

.slogans-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.slogan-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 5px solid #fab519;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slogan-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.slogan-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fab519;
    opacity: 0.3;
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.slogan-content {
    flex: 1;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: #fab519;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.quote-mark-end {
    font-size: 4rem;
    color: #fab519;
    opacity: 0.3;
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: serif;
}

.slogan-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #041d62;
    margin: 0;
    font-weight: 500;
    text-align: center;
    padding: 1rem 2rem;
    font-style: italic;
}

/* Store Link Section */
.store-link {
    padding: 6rem 0;
    color: white;
    background: linear-gradient(rgba(4, 29, 98, 0.8), rgba(4, 29, 98, 0.8)), url('boutique.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.store-info {
    text-align: left;
}

.store-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fab519;
}

.store-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-align: justify;
}

.store-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.feature-icon {
    font-size: 1.2rem;
    min-width: 20px;
}

.store-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    max-width: 350px;
    width: 100%;
    transition: all 0.3s ease;
}

.store-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.store-logo {
    margin-bottom: 2rem;
}

.store-logo-img {
    height: 80px;
    width: auto;
    max-width: 150px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: none;
    background-color: transparent;
    background-image: none;
}

.store-url {
    margin-bottom: 2rem;
}

.url-label {
    font-size: 1.3rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    color: white;
}

.btn-store {
    background: linear-gradient(135deg, #fab519 0%, #e6a317 100%);
    color: #041d62;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 181, 25, 0.4);
    background: linear-gradient(135deg, #e6a317 0%, #d4941e 100%);
}

.btn-text {
    display: block;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-store:hover .btn-icon {
    transform: translateX(5px);
}

.store-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #041d62 0%, #2c3e50 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: left;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 120px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: white;
    background-color: white;
    padding: 8px;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.footer-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.footer-links li:hover {
    opacity: 1;
    color: #ffffff;
    cursor: default;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
}

.contact-item:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #5dade2;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.developer-credit {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dev-text {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
    color: #cccccc;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.weult-link-full {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.weult-link-full:hover {
    color: #ffffff;
    opacity: 1;
}

.weult-link-full::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.weult-link-full:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-brand .logo {
        height: 50px;
    }
    
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .main-logo {
        height: 120px;
        animation: slowRotate 25s linear infinite;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 14px;
        min-width: 180px;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-image {
        height: 100px;
    }
    
    .about-img {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .text-block {
        padding: 2rem;
    }
    
    .partners {
        padding: 4rem 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 2rem;
    }
    
    .partner-logo {
        height: 60px;
    }
    
    .partner-img {
        max-height: 60px;
        max-width: 120px;
    }
    
    .partners-footer {
        padding: 1.5rem;
    }
    
    .slogans {
        padding: 4rem 0;
    }
    
    .slogan-card {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        text-align: center;
    }
    
    .slogan-number {
        font-size: 2rem;
        min-width: auto;
    }
    
    .slogan-text {
        font-size: 1.1rem;
        padding: 0.5rem;
    }
    
    .quote-mark,
    .quote-mark-end {
        font-size: 3rem;
    }
    
    .quote-mark {
        top: -5px;
        left: 0;
    }
    
    .quote-mark-end {
        bottom: -15px;
        right: 0;
    }
    
    .store-link {
        padding: 4rem 0;
    }
    
    .store-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .store-info {
        text-align: center;
    }
    
    .store-title {
        font-size: 1.5rem;
    }
    
    .store-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .store-card {
        padding: 2rem;
    }
    
    .store-logo-img {
        height: 60px;
    }
    
    .btn-store {
        padding: 0.875rem 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .dev-text {
        font-size: 0.8rem;
    }
    
    .language-switcher {
        margin-top: 1rem;
        width: fit-content;
        align-self: center;
    }
}

/* Section spacing */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

/* Responsive section padding */
@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }
}
