/* Google-inspired Clean Layout */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary: #377F7F;
    --secondary: #5F955E;
    --accent: #93DC18;
    --highlight: #D5CC17;
    --background: #ffffff;
    --foreground: #377F7F;
    --muted: #5F955E;
    --border: #93DC18;
    --shadow-sm: 0 1px 2px 0 rgba(55, 127, 127, 0.1), 0 1px 3px 1px rgba(55, 127, 127, 0.08);
    --shadow-md: 0 1px 3px 0 rgba(55, 127, 127, 0.12), 0 4px 8px 3px rgba(55, 127, 127, 0.1);
    --shadow-lg: 0 1px 3px 0 rgba(55, 127, 127, 0.12), 0 8px 24px 4px rgba(55, 127, 127, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50px
}

html {
    scroll-behavior: smooth
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: var(--foreground);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    font-size: 14px
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(147, 220, 24, 0.2);
    box-shadow: none;
    z-index: 1000;
    padding: 0;
    height: 64px;
    display: flex;
    align-items: center
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(147, 220, 24, 0.1);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    width: 200px;
    transition: all 0.2s;
    box-shadow: none;
    border: 1px solid rgba(147, 220, 24, 0.2)
}

@media(max-width:1024px) {
    .nav-search {
        width: 160px
    }
}

@media(max-width:768px) {
    .nav-search {
        display: none
    }
}

.nav-search:focus-within {
    background: #fff;
    box-shadow: var(--shadow-sm);
    border-color: var(--accent)
}

.nav-search svg {
    color: var(--secondary);
    flex-shrink: 0;
    width: 16px;
    height: 16px
}

.nav-search input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.875rem;
    color: var(--foreground);
    width: 100%;
    font-family: inherit
}

.nav-search input::placeholder {
    color: var(--muted)
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: var(--primary)
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex: 1;
    margin: 0
}

.nav-links a {
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 400;
    font-size: 0.9rem;
    position: relative;
    padding: 8px 0;
    display: inline-block
}

.nav-links a:hover {
    color: var(--accent)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s;
    border-radius: 1px
}

.nav-links a:hover::after {
    width: 100%
}

/* Mega Menu */
@media (min-width: 769px) {
    .nav-dropdown {
        position: relative
    }

    .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 4px
    }

    .nav-dropdown-toggle svg {
        transition: transform 0.2s;
        width: 12px;
        height: 12px
    }

    .nav-dropdown:hover .nav-dropdown-toggle svg {
        transform: rotate(180deg)
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: #fff;
        border: 1px solid rgba(147, 220, 24, 0.2);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        padding: 1.5rem;
        min-width: 280px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100
    }

    .nav-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0)
    }

    .mega-menu-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem
    }

    .mega-menu-section h4 {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(147, 220, 24, 0.2)
    }

    .mega-menu-section ul {
        list-style: none
    }

    .mega-menu-section ul li {
        margin-bottom: 0.5rem
    }

    .mega-menu-section ul li a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.2s;
        padding: 4px 0;
        display: block
    }

    .mega-menu-section ul li a:hover {
        color: var(--accent);
        padding-left: 4px
    }

    .mega-menu-section ul li a::after {
        display: none
    }
}

.mobile-menu-btn {
    display: none
}

/* Hero Section */
.hero {
    padding: 120px 24px 80px;
    text-align: center;
    background: #ffffff;
    margin-top: 64px
}

.hero-content {
    max-width: 900px;
    margin: 0 auto
}

.hero-image {
    margin-bottom: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #fff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg)
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--foreground);
    letter-spacing: -0.5px
}

.highlight {
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--accent);
    background-clip: text;
    font-weight: 400
}

.hero-description {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    display: inline-block;
    box-shadow: none;
    letter-spacing: 0.25px
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    background: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px)
}

.btn-secondary {
    background: var(--secondary);
    color: #fff
}

.btn-secondary:hover {
    background: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px)
}

.btn-accent {
    background: var(--accent);
    color: #1f1f1f
}

.btn-accent:hover {
    background: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px)
}

.btn-highlight {
    background: var(--highlight);
    color: #1f1f1f
}

.btn-highlight:hover {
    background: var(--highlight);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border)
}

.btn-outline:hover {
    background: rgba(147, 220, 24, 0.08);
    border-color: var(--accent)
}

/* Sections */
section {
    padding: 80px 24px
}

.glass-section {
    background: #ffffff;
    border: none;
    box-shadow: none
}

.glass-section:nth-child(even) {
    background: rgba(213, 204, 23, 0.05)
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    letter-spacing: -0.25px
}

.section-header p {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto
}

/* Cards */
.card {
    background: #ffffff;
    border: 1px solid rgba(147, 220, 24, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s;
    text-align: center;
    box-shadow: none
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent)
}

.card:nth-child(2):hover {
    border-color: var(--secondary)
}

.card:nth-child(3):hover {
    border-color: var(--accent)
}

.card:nth-child(4):hover {
    border-color: var(--highlight)
}

.card-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
    background: rgba(255, 255, 255, 0.3)
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(55, 127, 127, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    border: 1px solid rgba(55, 127, 127, 0.2)
}

.card:nth-child(2) .card-icon {
    background: rgba(95, 149, 94, 0.1);
    color: var(--secondary);
    border-color: rgba(95, 149, 94, 0.2)
}

.card:nth-child(3) .card-icon {
    background: rgba(147, 220, 24, 0.1);
    color: var(--accent);
    border-color: rgba(147, 220, 24, 0.2)
}

.card:nth-child(4) .card-icon {
    background: rgba(213, 204, 23, 0.1);
    color: var(--highlight);
    border-color: rgba(213, 204, 23, 0.2)
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    font-weight: 500
}

.card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5
}

/* Code Blocks */
code {
    background: rgba(147, 220, 24, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary)
}

pre {
    background: rgba(147, 220, 24, 0.1);
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent)
}

pre code {
    background: none;
    padding: 0;
    color: var(--foreground);
    font-size: 0.85rem;
    line-height: 1.5
}

/* Legal Content */
.legal-content {
    color: var(--foreground);
    line-height: 1.8
}

.legal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary)
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--foreground);
    font-weight: 500
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 500
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.95rem
}

.legal-content ul {
    margin-bottom: 1rem;
    color: var(--muted)
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem
}

.legal-content strong {
    color: var(--foreground);
    font-weight: 600
}

/* Blog Cards */
.blog-card {
    background: #ffffff;
    border: 1px solid rgba(147, 220, 24, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    box-shadow: none
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent)
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(147, 220, 24, 0.1)
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s
}

.blog-card:hover .blog-image img {
    transform: scale(1.05)
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.blog-date {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    font-weight: 500;
    line-height: 1.4
}

.blog-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1
}

.blog-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block
}

.blog-link:hover {
    color: var(--primary);
    transform: translateX(4px)
}

/* Testimonials */
.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(147, 220, 24, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: none;
    min-height: 200px
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent)
}

.testimonial-text {
    color: var(--foreground);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1
}

.testimonial-author {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0
}

/* Contact Section */
.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    font-weight: 500
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--foreground);
    background: rgba(95, 149, 94, 0.1);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border)
}

.contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
    width: 20px;
    height: 20px
}

.contact-form {
    background: #fff;
    border: 1px solid rgba(147, 220, 24, 0.2);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm)
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    background: #fff;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    color: var(--foreground);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(147, 220, 24, 0.2)
}

.contact-form button {
    width: 100%
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(55, 127, 127, 0.95) 0%, rgba(95, 149, 94, 0.95) 100%);
    border-top: 3px solid var(--highlight);
    padding: 4rem 24px 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f1f1f;
    font-weight: bold;
    font-size: 1.2rem
}

.footer-logo h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    font-weight: 500
}

.footer-col {
    color: rgba(255, 255, 255, 0.9)
}

.footer-col h4 {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.footer-col ul li a:hover {
    color: var(--highlight);
    transform: translateX(4px)
}

.footer-col ul li a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.footer-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2)
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9)
}

.footer-contact strong {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0
}

.newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem
}

.newsletter input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--highlight);
    border-radius: 6px;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.3s
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6)
}

.newsletter input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(147, 220, 24, 0.3)
}

.newsletter button {
    padding: 10px 20px;
    font-size: 0.875rem;
    background: var(--accent);
    color: #1f1f1f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500
}

.newsletter button:hover {
    background: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 220, 24, 0.3)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto
}

.footer-bottom p {
    margin: 0
}

.footer-bottom svg {
    display: inline;
    margin: 0 4px;
    vertical-align: middle;
    color: var(--accent)
}

/* FAB & Scroll */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s;
    cursor: pointer
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid rgba(147, 220, 24, 0.2);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--foreground)
}

.scroll-top.visible {
    display: flex
}

.scroll-top:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px)
}

/* Loading */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(147, 220, 24, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-in
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

/* Responsive */
@media(max-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .downloads-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
        flex-wrap: wrap
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 6px 0
    }

    .mega-menu {
        min-width: 200px;
        font-size: 0.85rem
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 0.5rem
    }

    .logo h1 {
        font-size: 1.1rem
    }

    .logo-img {
        width: 28px;
        height: 28px
    }

    .navbar {
        padding: 0.5rem 0
    }

    .hero {
        padding: 100px 24px 60px
    }

    .hero-title {
        font-size: 1.75rem
    }

    .grid-2 {
        grid-template-columns: 1fr
    }

    .grid-4 {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }

    .newsletter {
        flex-direction: column
    }

    .newsletter input,
    .newsletter button {
        width: 100%
    }

    section {
        padding: 60px 24px
    }
}
