:root {
    --primary-orange: #FF6B35;
    --primary-amber: #F7931E;
    --dark-navy: #1A2332;
    --medium-navy: #2C3E50;
    --light-grey: #F4F4F4;
    --white: #FFFFFF;
    --text-dark: #1A2332;
    --text-medium: #4A5568;
    --text-light: #718096;
    --accent-teal: #14B8A6;
    --shadow: rgba(26, 35, 50, 0.1);
    --shadow-lg: rgba(26, 35, 50, 0.15);
}

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

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    /*
    font-size: 2rem;
    */
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    
    background-image: url('/favicon.svg');
    background-size: cover;    
    background-position: center;
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--dark-navy);
    font-weight: 400;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.cta-link {
    background: var(--primary-orange);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-link::after {
    display: none;
}

.cta-link:hover {
    background: var(--primary-amber);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-grey) 0%, #E8E8E8 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 107, 53, 0.03) 48%, rgba(255, 107, 53, 0.03) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(26, 35, 50, 0.02) 48%, rgba(26, 35, 50, 0.02) 52%, transparent 52%);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 4rem 20px;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.hero-title-small {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.hero-title-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    line-height: 0.95;
    color: var(--dark-navy);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--primary-amber);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-navy);
    border: 2px solid var(--dark-navy);
}

.btn-secondary:hover {
    background: var(--dark-navy);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.badge-text {
    font-weight: 600;
    color: var(--text-dark);
}

.hero-image {
    position: relative;
    height: 500px;
    animation: fadeInRight 0.8s ease-out;
}

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

.tool-icon {
    position: absolute;
    font-size: 5rem;
    filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.1));
    animation: float 3s ease-in-out infinite;
}

.tool-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.tool-2 {
    top: 40%;
    right: 20%;
    animation-delay: 0.5s;
}

.tool-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.tool-4 {
    bottom: 10%;
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: var(--white);
}

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

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-lg);
    border-color: var(--primary-orange);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: var(--dark-navy);
    color: var(--white);
}

.why-choose .section-title {
    color: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-orange);
    line-height: 1;
    min-width: 60px;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
    margin-bottom: 2.5rem;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Areas Covered */
.areas-covered {
    padding: 6rem 0;
    background: var(--light-grey);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.area-tag {
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-navy);
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.area-tag:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

.areas-note {
    text-align: center;
    color: var(--text-medium);
    margin-top: 2rem;
    font-size: 1.1rem;
}

.areas-note a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
}

.areas-note a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-amber) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-orange);
}

.cta-section .btn-primary:hover {
    background: var(--light-grey);
    transform: translateY(-3px);
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--medium-navy) 100%);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Services Detail */
.services-detail {
    padding: 5rem 0;
    background: var(--light-grey);
}

.service-detail-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
    transition: all 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.service-detail-icon {
    font-size: 4rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.service-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-tag {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.services-cta-section {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.services-cta-section p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Areas Page */
.areas-detail {
    padding: 5rem 0;
    background: var(--white);
}

.areas-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.areas-intro p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-orange);
}

.area-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px var(--shadow);
}

.area-card h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.area-card p {
    color: var(--text-medium);
}

.postcode {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-orange);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* About Page */
.about-intro {
    padding: 5rem 0;
    background: var(--white);
}

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

.about-content h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Page */
.contact-content {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 8px;
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--light-grey);
    padding: 3rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

/* Contact Form Error/Success Messages */
#errorDiv {
    display: none;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid #DC2626;
    border-left: 6px solid #DC2626;
    color: #991B1B;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    animation: errorSlideIn 0.3s ease-out;
}

#errorDiv::before {
    content: '⚠️';
    font-size: 1.3rem;
    margin-right: 0.8rem;
}

#errorDiv.show {
    display: block;
}

#errorDiv ul {
    margin: 0.5rem 0 0 0;
    padding-left: 2.5rem;
    list-style: none;
}

#errorDiv ul li {
    margin-bottom: 0.4rem;
    position: relative;
    line-height: 1.5;
}

#errorDiv ul li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: #DC2626;
    font-weight: bold;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success message variant */
#errorDiv.success {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-color: var(--accent-teal);
    border-left-color: var(--accent-teal);
    color: #0F766E;
}

#errorDiv.success::before {
    content: '✓';
}

#errorDiv.success ul li::before {
    color: var(--accent-teal);
}

.contact-details a[href*="wa.me"] {
    color: #25D366; /* WhatsApp green */
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-title-large {
        font-size: 3.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--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;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .hero-title-large {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
}