/* ========================================
   ПЕРЕМЕННЫЕ И БАЗОВЫЕ СТИЛИ
   ======================================== */
:root {
    --cream: #FBF7F0;
    --sand: #F0EBE3;
    --green: #2E5D3A;
    --blue: #1A3B5C;
    --terracotta: #D4884A;
    --dark: #2C2C2C;
    --gray: #5A5A5A;
}

body {
    background-color: var(--cream);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

/* ========================================
   НАВИГАЦИЯ
   ======================================== */
.navbar {
    background-color: var(--green) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 0;
}
.navbar-brand, .nav-link {
    color: var(--cream) !important;
}
.nav-link:hover {
    color: #f0e6d0 !important;
}

/* ========================================
   КНОПКИ
   ======================================== */
.btn-primary {
    background-color: var(--blue);
    border-color: var(--blue);
}
.btn-primary:hover {
    background-color: #14304C;
    border-color: #14304C;
}

.btn-warning {
    background-color: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}
.btn-warning:hover {
    background-color: #b8733e;
    border-color: #b8733e;
    color: white;
}

/* ========================================
   КАРТОЧКИ
   ======================================== */
.card {
    background-color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-5px);
}

/* ========================================
   ФУТЕР
   ======================================== */
.footer {
    background-color: var(--green);
    color: var(--cream);
}
.footer a {
    color: var(--sand);
    text-decoration: none;
}
.footer a:hover {
    color: white;
    text-decoration: underline;
}

/* ========================================
   СЛАЙДЕР (HERO)
   ======================================== */
.hero {
    position: relative;
    margin: 0;
    padding: 0;
    height: calc(100vh - 60px);
    min-height: 600px;
    background-color: #2E5D3A;
    overflow: hidden;
}

#heroCarousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 47%;
    background-repeat: no-repeat;
    z-index: 0;
}

.carousel-item .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide-1 {
    background-image: url('/static/images/hero/slide1.jpg');
}
.slide-2 {
    background-image: url('/static/images/hero/slide2.jpg');
}
.slide-3 {
    background-image: url('/static/images/hero/slide3.jpg');
}

/* ========================================
   КАРТОЧКИ НОМЕРОВ
   ======================================== */
.room-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f0ebe3;
}

.room-card-img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card.h-100 {
    display: flex;
    flex-direction: column;
}

.card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.card-text {
    min-height: 60px;
    max-height: 90px;
    overflow-y: auto;
    margin-bottom: 8px;
    padding-right: 4px;
}

.card-text::-webkit-scrollbar {
    width: 6px;
}
.card-text::-webkit-scrollbar-track {
    background: #f0ebe3;
    border-radius: 3px;
}
.card-text::-webkit-scrollbar-thumb {
    background: #2E5D3A;
    border-radius: 3px;
}

.card-body .mt-auto {
    margin-top: auto;
}

.card-body .btn {
    margin-top: 8px;
}

/* ========================================
   КАЛЕНДАРЬ ДОСТУПНОСТИ
   ======================================== */
#calendar {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
}

#calendar .fc-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px !important;
}

#calendar .fc-toolbar-title {
    font-size: 0.95rem !important;
    font-family: 'Playfair Display', serif;
    color: #2C2C2C;
}

#calendar .fc-button {
    background-color: #1A3B5C !important;
    border-color: #1A3B5C !important;
    color: #fff !important;
    font-size: 0.72rem !important;
    padding: 4px 8px !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
    text-transform: none !important;
    border-radius: 4px !important;
}

#calendar .fc-button:hover {
    background-color: #14304C !important;
    border-color: #14304C !important;
}

#calendar .fc-button:focus,
#calendar .fc-button:active {
    box-shadow: none !important;
    outline: none !important;
}

#calendar .fc-col-header-cell {
    background-color: #F0EBE3;
    font-weight: 600;
    font-size: 0.72rem;
    color: #2C2C2C;
    padding: 4px 0;
}

#calendar .fc-col-header-cell-cushion {
    color: #2C2C2C;
    text-decoration: none;
}

#calendar .fc-scrollgrid,
#calendar .fc-scrollgrid td,
#calendar .fc-scrollgrid th {
    border-color: #e0dcd4 !important;
}

#calendar .fc-daygrid-day {
    background-color: #fff;
    min-height: 38px;
    cursor: default;
}

#calendar .fc-daygrid-day-number {
    font-size: 0.75rem;
    color: #2C2C2C;
    padding: 2px 4px;
    text-decoration: none;
}

#calendar .fc-day-today {
    background-color: #F0EBE3 !important;
}

#calendar .fc-bg-event {
    opacity: 0.35 !important;
}

#calendar .fc-view-harness {
    min-height: 260px;
}

.free-badge {
    display: inline-block;
    margin-left: 4px;
    padding: 1px 5px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    vertical-align: middle;
}

/* ========================================
   ГАЛЕРЕЯ — КАРУСЕЛЬ
   ======================================== */
.gallery-carousel {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    position: relative;
}

.gallery-carousel .carousel-inner {
    height: 550px;
    background-color: #f0ebe3;
}

.gallery-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f0ebe3;
}

.gallery-carousel .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: all 0.2s;
    z-index: 10;
    cursor: pointer;
    padding: 0;
    padding-bottom: 6px;
}

.gallery-carousel .gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.75);
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

.gallery-carousel .carousel-control-prev.gallery-arrow {
    left: 20px;
}

.gallery-carousel .carousel-control-next.gallery-arrow {
    right: 20px;
}

.gallery-arrow-icon {
    display: block;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.gallery-carousel .carousel-caption {
    background: rgba(0,0,0,0.5);
    border-radius: 6px;
    padding: 8px 16px;
    bottom: 20px;
}

.gallery-carousel .carousel-caption p {
    margin: 0;
    font-size: 1rem;
}

.gallery-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #888;
    opacity: 0.6;
}

.gallery-carousel .carousel-indicators button.active {
    background-color: #D4884A;
    opacity: 1;
}

/* ========================================
   СТРАНИЦА "ДЛЯ ДЕТЕЙ"
   ======================================== */
.kids-page .lead {
    font-size: 1.15rem;
    color: #5A5A5A;
    max-width: 800px;
    margin: 0 auto 40px;
}

.kids-card {
    transition: transform 0.25s, box-shadow 0.25s;
    border-radius: 12px;
}

.kids-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12) !important;
}

.kids-card .card-body {
    padding: 30px;
}

.kids-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E5D3A, #1A3B5C);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.kids-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.kids-card .card-text {
    color: #5A5A5A;
    line-height: 1.6;
    margin: 0;
}

.kids-block {
    background: #F0EBE3;
    padding: 30px;
    border-radius: 12px;
}

.kids-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #2C2C2C;
    margin: 0;
}

.kids-block p {
    color: #5A5A5A;
    line-height: 1.6;
    margin-bottom: 0;
}

.kids-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kids-list li {
    padding: 8px 0;
    color: #2C2C2C;
    font-size: 1rem;
    line-height: 1.5;
}

.kids-cta {
    background: linear-gradient(135deg, #2E5D3A, #1A3B5C);
    color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
}

.kids-cta h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 10px;
}

.kids-cta p {
    color: #f0ebe3;
    margin-bottom: 20px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-accordion .accordion-button {
    background-color: #fff;
    color: #2C2C2C;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 18px 24px;
    border: none;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #2E5D3A;
    color: #fff;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    padding: 18px 24px;
    color: #5A5A5A;
    line-height: 1.6;
    background-color: #FBF7F0;
}

.faq-cta {
    background: linear-gradient(135deg, #2E5D3A, #1A3B5C);
    color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
}

.faq-cta h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 10px;
}

.faq-cta p {
    color: #f0ebe3;
    margin-bottom: 20px;
}

/* ========================================
   КНОПКА "НАЗАД"
   ======================================== */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background-color: #2E5D3A;
    border-color: #2E5D3A;
    color: #fff;
    transform: translateX(-3px);
}

.back-btn i {
    font-size: 0.85rem;
}

/* ========================================
   БЛОК "О НАС" НА ГЛАВНОЙ
   ======================================== */

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-feature {
    color: #2C2C2C;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   СТРАНИЦА "О НАС"
   ======================================== */

/* Вводный текст */
.about-page .lead {
    font-size: 1.2rem;
    color: #5A5A5A;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-style: italic;
}

/* Заголовок H1 — крупный, с декоративной линией */
.page-content h1,
.about-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2E5D3A;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
}

.page-content h1::after,
.about-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2E5D3A, #D4884A);
    border-radius: 2px;
}

/* ВАЖНО: страховка — белый текст в hero-блоке на главной */
.hero h1,
.hero h2,
.hero p,
.hero .lead {
    color: #fff !important;
}

/* Заголовки H3 в блоках (Наш дом, У моря) */
.about-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A3B5C;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-block h3 i {
    color: #D4884A;
    font-size: 1.3rem;
}

/* Общий заголовок "Что делает наш дом особенным" */
.about-page > h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2E5D3A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 18px;
}

.about-page > h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D4884A;
    border-radius: 2px;
}

/* Блоки с серым фоном */
.about-block {
    background: linear-gradient(135deg, #F0EBE3 0%, #FBF7F0 100%);
    padding: 32px;
    border-radius: 14px;
    height: 100%;
    border-left: 4px solid #2E5D3A;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.about-block p {
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Карточки с иконками */
.about-feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    text-align: center;
    border-top: 3px solid transparent;
}

.about-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    border-top-color: #D4884A;
}

.about-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E5D3A, #1A3B5C);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    transition: transform 0.3s;
}

.about-feature-card:hover .about-icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2E5D3A;
    margin-bottom: 12px;
}

.about-feature-card p {
    color: #5A5A5A;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Блок "Наш подход" — тёплый, акцентный */
.about-block.mb-5 h3 {
    color: #D4884A;
    justify-content: center;
    text-align: center;
}

.about-block.mb-5 h3 i {
    color: #dc3545;
}

/* CTA-блок внизу */
.about-cta {
    background: linear-gradient(135deg, #2E5D3A 0%, #1A3B5C 100%);
    color: #fff;
    padding: 50px 30px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(46, 93, 58, 0.25);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(212, 136, 74, 0.15);
    border-radius: 50%;
}

.about-cta h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
}

.about-cta p {
    color: #f0ebe3;
    font-size: 1.05rem;
    margin-bottom: 25px;
    position: relative;
}

.about-cta .btn-warning {
    background: #D4884A;
    border-color: #D4884A;
    color: #fff;
    padding: 12px 30px;
    font-size: 1.05rem;
    border-radius: 30px;
    transition: all 0.25s;
    position: relative;
}

.about-cta .btn-warning:hover {
    background: #b8733e;
    border-color: #b8733e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ========================================
   АНИМАЦИИ ДЛЯ СТРАНИЦЫ "О НАС"
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}

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

.about-page .lead {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.about-page > h3 {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.about-page .row:first-of-type .col-md-6:first-child .about-block {
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.about-page .row:first-of-type .col-md-6:last-child .about-block {
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.about-feature-card {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

.about-page .row.g-4.mb-5 .col-md-4:nth-child(1) .about-feature-card { animation-delay: 0.5s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(2) .about-feature-card { animation-delay: 0.6s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(3) .about-feature-card { animation-delay: 0.7s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(4) .about-feature-card { animation-delay: 0.8s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(5) .about-feature-card { animation-delay: 0.9s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(6) .about-feature-card { animation-delay: 1s; }

.about-icon {
    animation: pulse 3s ease-in-out infinite;
}

.about-block.mb-5 {
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.about-cta {
    animation: fadeInUp 0.9s ease-out 1.3s both;
}

.about-cta .btn-warning {
    animation: floatSlow 3s ease-in-out infinite;
}

/* ========================================
   АДАПТИВ
   ======================================== */
@media (max-width: 768px) {
    .about-image img {
        height: 300px;
    }
    .page-content h1,
    .about-page h1 {
        font-size: 2rem;
    }
    .about-page > h3 {
        font-size: 1.5rem;
    }
    .about-block,
    .about-feature-card {
        padding: 22px;
    }
    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    .about-cta h4 {
        font-size: 1.4rem;
    }
}

/* ========================================
   АНИМАЦИИ ДЛЯ СТРАНИЦЫ "О НАС"
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}

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

.about-page .lead {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.about-page > h3 {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.about-page .row:first-of-type .col-md-6:first-child .about-block {
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.about-page .row:first-of-type .col-md-6:last-child .about-block {
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.about-feature-card {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

.about-page .row.g-4.mb-5 .col-md-4:nth-child(1) .about-feature-card { animation-delay: 0.5s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(2) .about-feature-card { animation-delay: 0.6s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(3) .about-feature-card { animation-delay: 0.7s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(4) .about-feature-card { animation-delay: 0.8s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(5) .about-feature-card { animation-delay: 0.9s; }
.about-page .row.g-4.mb-5 .col-md-4:nth-child(6) .about-feature-card { animation-delay: 1s; }

.about-icon {
    animation: pulse 3s ease-in-out infinite;
}

.about-block.mb-5 {
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.about-cta {
    animation: fadeInUp 0.9s ease-out 1.3s both;
}

.about-cta .btn-warning {
    animation: floatSlow 3s ease-in-out infinite;
}

/* ========================================
   АДАПТИВ
   ======================================== */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .gallery-carousel .carousel-inner {
        height: 300px;
    }
    .gallery-carousel .gallery-arrow {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
    .gallery-carousel .carousel-control-prev.gallery-arrow {
        left: 8px;
    }
    .gallery-carousel .carousel-control-next.gallery-arrow {
        right: 8px;
    }
    .kids-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    .kids-block {
        padding: 22px;
    }
    .kids-cta {
        padding: 28px 18px;
    }
    .about-image img {
        height: 300px;
    }
    .page-content h1,
    .about-page h1,
    .container > h1 {
        font-size: 2rem;
    }
    .about-page > h3 {
        font-size: 1.5rem;
    }
    .about-block,
    .about-feature-card {
        padding: 22px;
    }
    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    .about-cta h4 {
        font-size: 1.4rem;
    }
}