:root {
    --primary-color: #27ae60;
    --secondary-color: #f8f9fa;
    --accent-color: #25a056;
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #f4f4f4;
    --border-color: #e0e0e0;
    --text-color: #333;
    --text-light: #666;
    --max-width: 1200px;
    --section-padding: 80px 0;
    --header-height: 80px;
}

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

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

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

section.features img {
    max-width: unset;
    height: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* ヒーローセクション */
.hero {
    background-color: var(--secondary-color);
    position: relative;
    margin: 80px 0;
    height: calc(100vh - 80px);
    /* overflow: hidden; */
    background-image: url(/assets/images/hero-image.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    height: 100%;
    min-height: inherit;
}

.hero-text {
    position: absolute;
    /* background-color: rgba(255, 255, 255, 0.5); */
    /* backdrop-filter: blur(8px); */
    border-radius: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* max-width: 50%; */
    padding: 30px 50px;
    width: fit-content;
    text-align: center;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.hero-title {
    font-size: 58px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow:
        0 2px 8px rgba(255,255,255,0.85),
        0 0px 1px #fff,
        -1px -1px 0 #bbb,
         1px -1px 0 #bbb,
        -1px  1px 0 #bbb,
         1px  1px 0 #bbb;
}

.hero-title-line1 {
    font-size: 30px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-light);
    text-shadow:
        0 2px 8px rgba(255,255,255,0.85),
        0 0px 1px #fff,
        -1px -1px 0 #bbb,
         1px -1px 0 #bbb,
        -1px  1px 0 #bbb,
         1px  1px 0 #bbb;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: none;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-badge {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.hero-badge svg {
    display: none;
}

/* ダイアゴナルセクション */
.diagonal-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: -1;
}

/* 特徴セクション */
.features {
    padding: var(--section-padding);
    background-color: var(--light-color);
    position: relative;
}

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

.feature-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 200px;
    background-color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-content {
    padding: 25px;
}

.feature-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.feature-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* スマチャとは */
.about {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    background-color: var(--light-color);
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-feature svg {
    color: var(--primary-color);
}

/* メリットセクション */
.benefits {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

.benefit-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

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

.benefit-icon {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    opacity: 0.8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.benefit-icon svg {
    color: var(--primary-color);
    position: absolute;
    font-size: 30px;
}

.benefit-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 28px;
    margin-bottom: 15px;
}

.benefit-description {
    color: var(--text-light);
}

/* 比較セクション */
.comparison {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.comparison-table th, 
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: 500;
    white-space: nowrap;
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 25px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    padding-left: 25px;
    white-space: nowrap;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--gray-color);
}

.comparison-table .highlight {
    background-color: rgba(39, 174, 96, 0.08);
    font-weight: bold;
    position: relative;
}

.comparison-table .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
}

/* 導入方法セクション */
.process {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: box-shadow 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1), border-color 0.4s, background 0.4s;
    /* border: 2px solid transparent; */
    background: var(--light-color);
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 70px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: background 0.4s cubic-bezier(.4,0,.2,1), color 0.4s, transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}

.step-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-light);
}

.process-step:hover {
    box-shadow: 0 8px 32px rgba(39, 174, 96, 0.15);
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary-color);
    background: #f6fcf8;
    z-index: 2;
}

.process-step:hover .step-number {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.18);
}

/* 料金プラン */
.pricing {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

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

.pricing-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.pricing-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 25px 20px;
    text-align: center;
}

.pricing-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.pricing-period {
    font-size: 14px;
    opacity: 0.8;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.pricing-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* お問い合わせ */
.contact {
    padding: var(--section-padding);
    background-color: var(--light-color);
    text-align: center;
}

.contact-description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-light);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-method {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-method-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-method-info {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* フッター */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo img {
    height: 60px;
    margin-right: 10px;
    border-radius: 5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

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

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        flex: none;
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        display: block;
        position: static;
        min-height: auto;
        height: auto;
        width: 100%;
        padding: 0;
    }
    
    .hero-image {
        position: relative;
        /* width: 100vw; */
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        height: 100%;
        margin-bottom: 0;
        order: 1;
        z-index: 1;
        border-radius: 0;
        overflow: hidden;
    }
    
    .hero-image img {
        /* width: 100vw; */
        height: 360px;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
        display: block;
    }

    .hero-title-line1 {
        font-size: 1.1rem;
    }
    
    .hero-text {
        /* position: static; */
        max-width: 100%;
        padding: 18px 10px 0 10px;
        transform: translate(-0%, -50%) !important;
        text-align: center;
        order: 2;
        background: none;
        left: unset;

    }
    
    .hero-title {
        font-size: 2.1rem;
        margin-top: 10px;
        line-height: 1.25;
        margin-bottom: 10px;
        word-break: keep-all;
        letter-spacing: 0.01em;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-top: 4rem;
        margin-bottom: 18px;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    .nav-links {
        display: none;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comparison-table {
        min-width: 600px;
        width: max-content;
    }
    .comparison-table th,
    .comparison-table td {
        white-space: nowrap;
    }
    .cta-button {
        display: none !important;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Swiper カスタム 強化 */
.benefits-swiper {
    position: relative;
    height: 370px;
    padding: 10px !important;
}
.benefits-swiper .swiper-wrapper {
    align-items: stretch;
}
.benefits-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
    height: 300px;
}
.benefit-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.benefits-swiper .swiper-button-next,
.benefits-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.benefits-swiper .swiper-button-next,
.benefits-swiper .swiper-button-prev {
    pointer-events: auto;
}
.benefits-swiper .swiper-button-next:after,
.benefits-swiper .swiper-button-prev:after {
    font-size: 20px;
}
.benefits-swiper .swiper-button-prev {
    /* left: -48px; */
    opacity: 0.4 !important;
}
.benefits-swiper .swiper-button-next {
    /* right: -48px; */
    opacity: 0.4 !important;
}
@media (max-width: 1024px) {
    .benefits-swiper .swiper-button-prev {
        /* left: -20px; */
        opacity: 0.4 !important;
    }
    .benefits-swiper .swiper-button-next {
        /* right: -20px; */
        opacity: 0.4 !important;
    }
}
.benefits-swiper .swiper-pagination {
    /* bottom: -32px !important; */
    text-align: center;
    z-index: 10;
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0.4 !important;
}
.benefits-swiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: opacity 0.2s, background 0.2s;
}
.benefits-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 4px 0;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        right: 0;
        width: 80vw;
        max-width: 320px;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        padding: 30px 0 10px 0;
        z-index: 1100;
        border-radius: 0 0 12px 12px;
        animation: fadeInUp 0.3s;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 16px 32px;
        border-bottom: 1px solid var(--border-color);
        font-size: 18px;
        text-align: left;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .hamburger {
        display: flex;
    }
}

/* お問い合わせフォーム */
.cta-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
    text-align: left;
}

.required {
    color: #e74c3c;
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.1);
}

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

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark:after {
    display: block;
}

.privacy-text {
    font-size: 14px;
    color: var(--text-light);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .submit-button {
        max-width: 100%;
    }
} 