* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 60, 114, 0.95);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .logo {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.navbar .nav-links {
    display: flex;
    gap: 30px;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.menu-toggle:active {
    transform: scale(0.9);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9) 0%, rgba(42, 82, 152, 0.9) 100%),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .tagline {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.hero .description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 13px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #1e3c72;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 30px;
    color: rgba(255,255,255,0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    margin: 15px auto;
    border-radius: 2px;
}

/* Products Section */
.products-section {
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-card .icon i {
    font-size: 35px;
    color: white;
}

.product-card h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.services-section .section-title h2 {
    color: white;
}

.services-section .section-title p {
    color: rgba(255,255,255,0.8);
}

.services-section .underline {
    background: #ffd700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Info Section */
.info-section {
    background: white;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    border-color: #1e3c72;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card .icon i {
    font-size: 28px;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.info-card a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    color: #1e3c72;
}

/* Testimonial Section */
.testimonial-section {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    color: #1e3c72;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-card .content {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-card .author-info h4 {
    color: #1e3c72;
    font-size: 1rem;
}

.testimonial-card .author-info p {
    color: #888;
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.cta-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.cta-btn.call {
    background: white;
    color: #1e3c72;
}

.cta-btn.call:hover {
    background: #ffd700;
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-list li .icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-list li .icon i {
    color: white;
    font-size: 18px;
}

.contact-list li .text h4 {
    color: #1e3c72;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-list li .text p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.contact-list li .text a {
    color: #2a5298;
    text-decoration: none;
}

.contact-list li .text a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-section .social-links a:hover {
    background: #ffd700;
    color: #1a1a2e;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive - iPad Pro & Large Tablets (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - iPad & Tablets (992px) */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 350px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section h2 {
        font-size: 1.9rem;
    }
}

/* Responsive - iPad Mini & Small Tablets (768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .navbar .logo {
        font-size: 1.2rem;
    }

    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3c72;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 70px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .hero .description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
        padding: 0 15px;
    }

    section {
        padding: 60px 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 85%;
        justify-content: center;
        padding: 14px 25px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        padding: 25px 15px;
    }

    .product-card .icon {
        width: 65px;
        height: 65px;
    }

    .product-card .icon i {
        font-size: 28px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card i {
        font-size: 35px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 85%;
        justify-content: center;
        padding: 14px 25px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .map-container {
        min-height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* Responsive - Mobile Phones (576px) */
@media (max-width: 576px) {
    .navbar {
        padding: 12px 15px;
    }

    .navbar .logo {
        font-size: 1rem;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero .description {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    section {
        padding: 50px 12px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .section-title .underline {
        width: 60px;
        height: 3px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product-card {
        padding: 20px 12px;
        border-radius: 12px;
    }

    .product-card .icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .product-card .icon i {
        font-size: 24px;
    }

    .product-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .product-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card i {
        font-size: 32px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .info-card {
        padding: 25px 15px;
    }

    .info-card .icon {
        width: 60px;
        height: 60px;
    }

    .info-card .icon i {
        font-size: 24px;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-card::before {
        font-size: 60px;
        top: 10px;
        left: 15px;
    }

    .testimonial-card .content {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .testimonial-card .avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .testimonial-card .author-info h4 {
        font-size: 0.95rem;
    }

    .testimonial-card .author-info p {
        font-size: 0.8rem;
    }

    .cta-section h2 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .cta-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info > p {
        font-size: 0.9rem;
    }

    .contact-list li {
        gap: 12px;
        margin-bottom: 18px;
    }

    .contact-list li .icon {
        width: 40px;
        height: 40px;
    }

    .contact-list li .icon i {
        font-size: 16px;
    }

    .contact-list li .text h4 {
        font-size: 0.9rem;
    }

    .contact-list li .text p {
        font-size: 0.85rem;
    }

    .map-container {
        min-height: 280px;
        border-radius: 12px;
    }

    footer {
        padding: 40px 15px 15px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section ul li {
        font-size: 0.9rem;
    }

    .footer-section .social-links a {
        width: 38px;
        height: 38px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator i {
        font-size: 24px;
    }
}

/* Responsive - Extra Small Phones (360px) */
@media (max-width: 360px) {
    .navbar .logo {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .tagline {
        font-size: 0.9rem;
    }

    .hero .description {
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card {
        padding: 25px 20px;
    }

    .product-card .icon {
        width: 65px;
        height: 65px;
    }

    .product-card .icon i {
        font-size: 28px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    .cta-section h2 {
        font-size: 1.2rem;
    }
}

/* iPad Landscape Mode */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover,
    .service-card:hover,
    .info-card:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .cta-btn:hover {
        transform: none;
    }

    .product-card:active,
    .service-card:active,
    .cta-btn:active {
        transform: scale(0.98);
    }

    .hero {
        background-attachment: scroll;
    }
}

/* Safe Area for Notched Devices (iPhone X+) */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .whatsapp-float {
        bottom: max(15px, env(safe-area-inset-bottom));
        right: max(15px, env(safe-area-inset-right));
    }

    footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

