:root {
    --primary-color: #ea580c;
    /* Vibrant Orange */
    --accent-color: #c2410c;
    /* Darker Orange / Accent */
    --accent-hover: #9a3412;
    --text-main: #431407;
    /* Dark Brown */
    --text-light: #7c2d12;
    --bg-light: #fff7ed;
    /* Very Light Orange background */
    --white: #ffffff;
    --line-green: #06c755;
    --line-hover: #05a044;
    --red: #ef4444;

    /* Fonts */
    --font-gothic: "BIZ UDPGothic", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    --font-mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-gothic);
    font-size: 18px;
    /* Increased base font size */
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc-br {
    display: block;
}

.sp-br {
    display: none;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    font-family: var(--font-mincho);
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    flex-direction: column;
}

.header__logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.header__logo-img {
    height: 120px;
    width: auto;
    display: block;
}

.header__sub-text {
    font-size: 0.75rem;
    color: var(--text-light);
}

.header__actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn--tel {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--tel:hover {
    background-color: var(--bg-light);
}

.btn--line {
    background-color: var(--line-green);
    color: var(--white);
}

.btn--line:hover {
    background-color: var(--line-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 130px;
    /* ヘッダー直下の余白を縮小 */
    position: relative;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: var(--text-main);
}

.hero__badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: fadeInDown 0.8s ease-out;
}

.hero__badge span {
    color: #fff;
    font-size: 1.4rem;
}

.hero__title {
    font-size: 2.8rem;
    font-family: var(--font-mincho);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__title .highlight {
    color: var(--accent-color);
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__campaign {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    /* LINEバナー下の余白を狭める(スマホ向けに調整) */
    border: 3px solid var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.hero__campaign:hover {
    transform: scale(1.02);
}

.hero__campaign h3 {
    color: var(--red);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.hero__campaign strong {
    color: var(--red);
    font-size: 1.2rem;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s ease;
}

.cta-btn--tel {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-btn--tel:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.cta-btn--line {
    background: linear-gradient(135deg, var(--line-green), var(--line-hover));
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.cta-btn--line:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.6);
}

/* Linear Banner Style (1:3 aspect ratio) */
.cta-banner-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 660px;
    aspect-ratio: 3.3 / 1;
    background: linear-gradient(135deg, var(--line-green), var(--line-hover));
    border-radius: 16px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
    transition: all 0.3s ease;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border: 4px solid #fff;
    text-decoration: none;
}

.cta-banner-line:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(6, 199, 85, 0.6);
    color: var(--white);
}

.cta-banner-line__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px;
}

.cta-banner-line__right {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
}

.cta-banner-line__sub {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-banner-line__sub span {
    color: #fff7d6;
    font-size: 1.4rem;
}

.cta-banner-line__main {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
    white-space: nowrap;
}

.cta-banner-line__main i {
    font-size: 2.8rem;
}

.cta-banner-line__hours {
    font-size: 1.05rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 20px;
    border-radius: 30px;
}

.cta-btn__sub {
    font-size: 1.8rem;
    font-weight: 500;
}

.cta-btn__main {
    font-size: 2rem;
    font-weight: 500;
    margin: 5px 0;
}

.cta-btn__hours {
    font-size: 1.6rem;
    opacity: 0.9;
}

/* Trouble Section */
.trouble {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trouble__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.trouble__item {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.trouble__item:hover {
    transform: translateY(-10px);
}

.trouble__icon {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.7;
}

.trouble__item p {
    font-weight: 500;
    font-size: 1.1rem;
}

.trouble__solution {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 40px;
}

.trouble__solution span {
    color: var(--red);
    font-size: 2.2rem;
}

.trouble__solution .highlight-title {
    color: var(--accent-color);
    /* 濃いオレンジに変更 */
    font-family: 'Kaisei Tokumin', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.arrow-down {
    font-size: 3rem;
    color: var(--accent-color);
    margin-top: 20px;
    animation: bounce 2s infinite;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
}

.floating-cta__btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
}

.floating-cta__btn--tel {
    background-color: var(--accent-color);
}

.floating-cta__btn--line {
    background-color: var(--line-green);
}

@media (min-width: 768px) {
    .hero__cta {
        flex-direction: row;
        justify-content: center;
    }

    .cta-btn {
        flex: 1;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: auto;
        width: auto;
        flex-direction: column;
        gap: 10px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .floating-cta__btn {
        padding: 15px 30px;
    }
}

@media (max-width: 767px) {
    .pc-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .header__actions {
        display: none;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__badge {
        font-size: 1rem;
    }

    .cta-btn__main {
        font-size: 1.5rem;
    }

    .cta-banner-line {
        aspect-ratio: auto;
        flex-direction: column;
        padding: 15px;
        max-width: 400px;
    }

    .cta-banner-line__left {
        background: transparent;
        padding: 5px;
        border-bottom: 2px dashed rgba(255, 255, 255, 0.4);
        width: 100%;
        margin-bottom: 10px;
    }

    .cta-banner-line__right {
        padding: 5px;
    }

    .cta-banner-line__sub {
        font-size: 1.1rem;
    }

    .cta-banner-line__sub span {
        font-size: 1.2rem;
    }

    .cta-banner-line__main {
        font-size: 1.4rem;
        gap: 6px;
    }

    .cta-banner-line__main i {
        font-size: 2rem;
    }

    .cta-banner-line__hours {
        font-size: 0.95rem;
    }

    /* 以下スマホ版のみの余白削除・調整 */
    .hero {
        margin-top: 120px;
        /* PC以上に狭める */
        padding-top: 40px;
        /* LP上部に1行分の余白を追加 */
    }

    .trouble {
        padding-top: 30px;
        /* お悩みセクション上の空白を削除・縮小 */
    }

    .footer__info {
        margin-bottom: 0;
    }

    .footer__info p {
        margin-bottom: 0;
        /* 企業情報の下の余分な空白（改行）を削除 */
    }
}

/* Split Banner Style (Left: Trial / Right: Visit) */
.cta-banner-split {
    display: flex;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
    transition: transform 0.3s ease;
    border: 4px solid #fff;
}

.cta-banner-split:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(6, 199, 85, 0.6);
}

.cta-banner-split__left {
    flex: 1;
    background-color: var(--line-green);
    color: white;
    padding: 20px 10px 30px;
    text-align: center;
}

.cta-banner-split__right {
    flex: 1;
    background-color: #05a044;
    color: white;
    padding: 20px 10px 30px;
    text-align: center;
}

.cta-banner-split__title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-banner-split__title i {
    font-size: 1.8rem;
}

.cta-banner-split__desc {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

.cta-banner-split__center {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--line-green);
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .cta-banner-split {
        flex-direction: column;
    }

    .cta-banner-split__left,
    .cta-banner-split__right {
        padding: 30px 10px;
    }

    .cta-banner-split__right {
        border-top: 2px dashed rgba(255, 255, 255, 0.4);
    }

    .cta-banner-split__center {
        bottom: 50%;
        transform: translate(-50%, 50%);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Background image for hero */
.hero__bg {
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-mincho);
}

/* USP Section */
.usp {
    padding: 80px 0;
    background-color: var(--white);
}

.usp__item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.usp__item--reverse {
    flex-direction: row-reverse;
}

.usp__image {
    flex: 1;
    position: relative;
    height: 350px;
    overflow: hidden;
}

.usp__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.usp__item:hover .usp__image img {
    transform: scale(1.05);
}

.usp__image--free {
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--font-mincho);
}

.yen-symbol {
    font-size: 8rem;
    margin-top: 1.5rem;
}

.zero-number {
    font-size: 16rem;
    line-height: 1;
}

.usp__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    font-weight: 500;
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.usp__content {
    flex: 1;
    padding: 0 40px;
}

.usp__content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.usp__content h3 span {
    color: var(--accent-color);
    font-size: 1.4rem;
    display: block;
    margin-top: 5px;
}

.usp__content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.categories__intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-card h3 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    margin: 0;
    font-size: 1.2rem;
}

.category-card p {
    padding: 20px;
    font-size: 0.95rem;
}

.categories__note {
    background-color: #fff3f3;
    border-left: 5px solid var(--red);
    padding: 15px 20px;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}

.categories__note p {
    color: var(--red);
    margin: 0;
}

/* LINE Promo */
.line-promo {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--line-green), var(--line-hover));
    text-align: center;
    color: var(--white);
}

.line-promo__box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.line-promo__content {
    flex: 1;
    min-width: 300px;
}

.line-promo__qr {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: var(--text-main);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.line-promo__qr img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.line-promo__qr p {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 !important;
    line-height: 1.4;
}

.line-promo__content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.line-promo__box h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.line-promo__box h2 span {
    color: #fff7d6;
    /* slight yellow tint */
}

.line-promo__box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn--large {
    display: inline-flex;
    padding: 15px 40px;
    font-size: 1.3rem;
    background-color: var(--white);
    color: var(--line-green);
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn--large:hover {
    background-color: var(--bg-light);
    color: var(--line-green);
}

/* Flow Section */
.flow {
    padding: 80px 0;
    background-color: var(--white);
}

.flow__steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

/* Connection line between steps */
.flow__steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step__num {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-family: var(--font-mincho);
    font-weight: 500;
    margin: 0 auto 20px;
    border: 5px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary-color);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    font-size: 0.95rem;
    text-align: justify;
    line-height: 1.7;
}

/* Responsive updates for new sections */
@media (max-width: 767px) {

    .usp__item,
    .usp__item--reverse {
        flex-direction: column;
    }

    .usp__image {
        height: 250px;
        width: 100%;
    }

    .usp__content {
        padding: 30px 20px;
    }

    .flow__steps {
        flex-direction: column;
        align-items: center;
    }

    .flow__steps::before {
        display: none;
    }

    .step {
        margin-bottom: 40px;
        width: 100%;
        max-width: 400px;
    }

    .line-promo__box h2 {
        font-size: 2rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--accent-color);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-card__img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-light);
}

.review-card__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
}

.review-card__info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stars {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.review-card__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.review-card__text strong {
    background: linear-gradient(transparent 60%, #fff7d6 0);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq__q {
    background-color: var(--bg-light);
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.faq__q:hover {
    background-color: #f0f0f0;
}

.faq__q span {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.faq__q i {
    margin-left: auto;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__q i {
    transform: rotate(180deg);
}

.faq__a {
    padding: 20px;
    background-color: var(--white);
    display: none;
    border-top: 1px dashed #eee;
}

.faq__a p {
    display: flex;
    gap: 10px;
    line-height: 1.8;
}

.faq__a span {
    color: var(--red);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
}

/* Footer Section */
.footer {
    background-color: var(--bg-light);
    color: var(--text-main);
    padding: 60px 0 20px;
}

.footer__contact {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer__contact h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.footer__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__info h3 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer__info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer__copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

@media (max-width: 767px) {
    .footer__contact {
        padding: 30px 15px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 15px;
    }
}