/* --- 1. Базовые настройки и Цвета --- */
:root {
    --blue: #2A8BCA;         /* Голубой акцент (сохраняем фирменный) */
    --blue-light: #7CB9E8;   /* Мягкий голубой для подсветки */
    --blue-text: #2A8BCA;    /* Текстовый холодный акцент */

    --white: #ffffff;
    --text-dark: #2B2B2B;    /* Основной тёмный текст */
    --text-light-gray: #5C5C5C;
    --bg-light: rgba(255, 255, 255, 0.75); /* светлая плашка */

    --glass-bg: rgba(255, 255, 255, 0.45); /* стекло адаптировано к бежевому фону */
    --glass-border: 1px solid rgba(255, 255, 255, 0.35);
    --radius-soft: 25px;
    --radius-hero: 40px;
    --blur-amount: 18px; /* Увеличили размытие для лучшего "стекла" */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

/* --- РАЗМЫТЫЙ ФОН --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    background-image: url('фон1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    filter: blur(8px);
    transform: scale(1.05);
}

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

section {
    padding: 100px 0;
    transition: all 0.5s ease-out;
}
section#home {
    padding-top: 40px;
    padding-bottom: 60px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--blue-text);
    position: relative;
    z-index: 2;
}

h2.about-title {
    text-align: left;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    color: var(--text-light-gray);
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- 2. Эффект Glassmorphism (Жидкое стекло) --- */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount)) saturate(170%);
    -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(170%);
    border-radius: var(--radius-soft);
    border: var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* --- 3. JS Эффект: "Жидкий" курсор --- */
.cursor-orb {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 139, 202, 0.2), rgba(42, 139, 202, 0.05));
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

/* --- 4. Шапка (Header) --- */
.main-header {
    position: sticky;
    top: 20px;
    margin: 0 20px 35px 20px;
    padding: 20px 40px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.3s;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 4px;
}

.logo-icon {
    height: 58px;
    width: auto;
    transition: transform 0.3s ease;
    transform: translateY(-10px);
}

.logo-wrapper:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

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

.cta-button {
    background: var(--blue);
    color: var(--white);
    padding: 9px 60px;
    text-decoration: none;
    border: none;
    border-radius: 15px;
    font-weight: 500;
    font-size: 1.15rem;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(42, 139, 202, 0.25);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 139, 202, 0.5);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.9);
    color: var(--blue-text);
    border: 1px solid rgba(42, 139, 202, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.cta-button.secondary:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Гамбургер-меню --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Мобильное меню */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    padding: 90px 30px 30px;
    overflow-y: auto;
}
.mobile-nav.is-open {
    transform: translateX(0);
}
.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.2rem;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
}
.mobile-nav a:hover {
    color: var(--blue);
}
.mobile-nav .mobile-cta {
    margin-top: 20px;
    text-align: center;
    color: var(--white);
    padding: 12px 30px;
}

/* --- 5. Секции --- */

/* Главная (Hero) */
#home {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* === HERO-БЛОК === */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    pointer-events: none;
}
.hero-banner {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    border-radius: var(--radius-hero);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);

    min-height: 350px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-content-wrapper {
    z-index: 2;
    position: relative;
}

.hero-content {
    padding: 10px 80px;
    background: none;
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    margin-top: 120px;
    align-items: flex-start;
    height: 100%;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--blue-text);
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    color: #3E3E3E;
    margin-bottom: 100px;
    max-width: 400px;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.6);
}

.hero-image {
    grid-column: 2 / 3;
    width: 150%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transform: none;
    justify-self: end;
    transition: transform 2s ease-out, opacity 2s ease-out;
    opacity: 0;
    transform: translateX(150px);
}
.hero-image.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: brightness(0.9);
}
.cta-button1 {
    background: var(--blue);
    color: var(--white);
    padding: 15px 50px;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(42, 139, 202, 0.25);
}

.cta-button1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 139, 202, 0.5);
}

.cta-button1.secondary {
    background: rgba(255,255,255,0.9);
    color: var(--blue-text);
    border: 1px solid rgba(42, 139, 202, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.cta-button1.secondary:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* О нас (About) */
#about {
    padding-top: 150px;
    padding-bottom: 200px;
}
#about .container {
    display: flex;
    align-items: center;
    gap: 60px;
}
#about .about-image {
    flex: 1;
    height: 350px;
}
#about .about-content {
    flex: 1.5;
}
#about .about-image img {
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;

    border-radius: var(--radius-soft);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Услуги (Services) */
#services {
    position: relative;
    overflow: hidden;
    padding-top: 240px;
    padding-bottom: 150px;
}

#services::before {
    content: "УСЛУГИ";
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;

    font-size: clamp(3rem, 15vw, 13rem);
    font-weight: 900;
    white-space: nowrap;
    pointer-events: none;
    max-width: 100vw;

    color: transparent;
    background: rgba(255, 255, 255, 0.1);

    filter: blur(1px) brightness(1.2);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-image: linear-gradient(135deg, rgba(41, 128, 185, 0.7), rgba(41, 128, 185, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(42, 139, 202, 0.2);

    text-shadow: 0 0 20px rgba(41, 128, 185, 0.8),
                 0 0 5px rgba(41, 128, 185, 0.5);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--radius-soft);

    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount)) saturate(170%);
    -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(170%);
    border: var(--glass-border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(42, 139, 202, 0.15);
}
.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--blue);
}

/* ---------------------------------------------------- */
/* НАШИ РАБОТЫ (Portfolio) - СЕТКА 2x2 С CTA   */
/* ---------------------------------------------------- */

#portfolio .container {
    max-width: 1200px;
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 500px);
    grid-template-rows: repeat(2, 500px);
    gap: 100px 160px;
    margin-bottom: 0;
    justify-content: center;
}

.portfolio-item {
    overflow: hidden;
    border-radius: var(--radius-soft);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: block;
    background-color: var(--bg-light);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    filter: brightness(0.75);
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.4s ease;
    border-radius: 0;
}

.portfolio-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.portfolio-cta {
    position: absolute;
    top: 400px;
    height: 300px;
    left: 300px;
    right: 300px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 30px 30px 30px;

    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount)) saturate(170%);
    -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(170%);
    border: var(--glass-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);

    text-align: center;
    border-radius: var(--radius-soft);
    z-index: 1;
}

.portfolio-cta h3 {
    color: var(--text-dark);
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.portfolio-btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 700;
    width: auto;
    display: inline-block;
}

#portfolio {
    position: relative;
    overflow: hidden;
    padding-top: 450px;
}

#portfolio::before {
    content: "РАБОТЫ";
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;

    font-size: clamp(3rem, 18vw, 15rem);
    font-weight: 900;
    white-space: nowrap;
    pointer-events: none;
    max-width: 100vw;

    color: transparent;
    background: rgba(255, 255, 255, 0.1);

    filter: blur(1px) brightness(1.2);

    background-image: linear-gradient(135deg, rgba(41, 128, 185, 0.7), rgba(41, 128, 185, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(42, 139, 202, 0.2);

    text-shadow: 0 0 20px rgba(41, 128, 185, 0.8),
                 0 0 5px rgba(41, 128, 185, 0.5);
}

@media (max-width: 992px) {
    #portfolio::before {
        top: 80px;
    }
}
@media (max-width: 768px) {
    #portfolio::before {
        top: 60px;
    }
}
@media (max-width: 480px) {
    #portfolio::before {
        top: 50px;
    }
}

/* Контакты (Contact) */
.contact-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-detail .icon {
    font-size: 1.8rem;
    color: #333333;
    flex-shrink: 0;
}

.contact-detail .detail-text {
    margin: 0;
    font-weight: 500;
    color: #333333;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-detail a.detail-link {
    text-decoration: none;
    color: #007BFF;
    transition: color 0.3s ease;
    flex-grow: 1;
    min-width: 0;
    font-size: 1.2rem;
}

.contact-detail a.detail-link:hover {
    color: var(--blue);
}

/* Стилизация блока социальных сетей */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Кнопки соцсетей */
.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-button.whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.social-button.telegram {
    background: #0088CC;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}
.social-button.telegram-channel {
    background: #229ED9;
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.4);
}
.social-button.max {
    background: #334bff;
    box-shadow: 0 4px 15px rgba(51, 116, 255, 0.4);
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

/* --- 6. Подвал (Footer) --- */
.footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.6);
}
.footer p {
    color: var(--text-light-gray);
    font-size: 1rem;
    margin: 0;
}
.komit-link {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}
.komit-link:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* --- 7. JS Анимации (Плавное появление) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.no-space {
    margin-bottom: 0 !important;
}

/* ---------------------------------------------------- */
/* 8. Адаптивность                                      */
/* ---------------------------------------------------- */

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 350px);
        gap: 60px 100px;
    }
    .portfolio-cta {
        top: 280px;
        height: 220px;
        left: 200px;
        right: 200px;
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }

    .nav-links,
    .main-header > .cta-button {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }

    /* Hero адаптив */
    .hero-banner {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        padding: 0;
        background: var(--glass-bg);
    }

    .hero-content-wrapper {
        background: none;
        border: none;
        backdrop-filter: none;
        border-radius: 0;
        order: 2;
        padding: 40px 25px;
        margin-right: 0;
    }

    .hero-content {
        padding: 0;
        text-align: center;
        align-items: center;
        margin-top: 0;
    }
    .hero-content h1 {
        white-space: normal;
        font-size: 2.5rem;
    }
    .hero-content p {
        max-width: 100%;
        margin-bottom: 40px;
        white-space: normal;
    }
    .hero-image {
        order: -1;
        min-height: 300px;
        transform: none;
        opacity: 1;
        width: 100%;
        grid-area: auto;
        border-radius: var(--radius-hero) var(--radius-hero) 0 0;
        justify-self: stretch;
    }
    .hero-image img {
        width: 100%;
    }

    .logo-icon {
        height: 40px;
        transform: translateY(0);
    }
    .logo-text {
        font-size: 1.5rem;
    }

    #about {
        padding-top: 80px;
        padding-bottom: 100px;
    }
    #about .container {
        flex-direction: column;
        gap: 30px;
    }
    #about .about-image, #about .about-content {
        flex: auto;
        width: 100%;
    }
    #about .about-image {
        height: 300px;
    }
    h2.about-title {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    #services {
        padding-top: 180px;
        padding-bottom: 100px;
    }
    #services::before {
        top: 80px;
    }

    /* Портфолио в 2 колонки */
    #portfolio {
        padding-top: 160px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 250px);
        gap: 20px;
    }
    .portfolio-cta {
        position: static;
        height: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin-top: 40px;
        padding: 40px 30px;
    }
    .portfolio-cta h3 {
        white-space: normal;
        margin-bottom: 25px;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; margin-bottom: 40px; }
    p { font-size: 1rem; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        border-radius: var(--radius-soft);
    }
    .hero-image {
        min-height: 250px;
        border-radius: var(--radius-soft) var(--radius-soft) 0 0;
    }
    .hero-content {
        padding: 30px 25px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }

    .main-header {
        padding: 15px 20px;
        margin: 0 10px 15px 10px;
        top: 10px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }
    .logo-icon {
        height: 30px;
    }

    #about .about-image {
        height: 250px;
    }

    .contact-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 220px);
        gap: 15px;
    }

    #portfolio {
        padding-top: 130px;
    }

    #services {
        padding-top: 140px;
    }
    #services::before {
        top: 65px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.9rem; line-height: 1.2; }
    h2 { font-size: 1.5rem; margin-bottom: 30px; }
    h3 { font-size: 1.2rem; }

    section {
        padding: 60px 0;
    }

    .main-header {
        padding: 10px 15px;
        margin: 0 8px 10px 8px;
        top: 5px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
    .logo-icon {
        height: 25px;
    }

    .hero-content {
        padding: 30px 15px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-image {
        min-height: 200px;
    }

    .service-card {
        padding: 25px;
    }

    .contact-cards-wrapper {
        padding: 25px 18px;
    }
    .contact-detail {
        gap: 8px;
    }
    .contact-detail .detail-text,
    .contact-detail a.detail-link {
        font-size: 1rem;
    }
    .contact-detail .icon {
        font-size: 1.4rem;
    }

    .social-button {
        font-size: 1rem;
        padding: 13px 20px;
    }

    .portfolio-grid {
        grid-template-rows: repeat(4, 180px);
    }
    .portfolio-cta {
        padding: 30px 20px;
    }

    #portfolio {
        padding-top: 100px;
    }

    #services {
        padding-top: 110px;
    }
    #services::before {
        top: 50px;
    }

    .footer {
        padding: 40px 15px;
    }
    .footer p {
        font-size: 0.9rem;
    }
}
