/* ベーススタイル */
:root {
    --primary-color: #0078d7;
    --secondary-color: #00a0e9;
    --accent-color: #ff6600;
    --dark-color: #333333;
    --light-color: #f9f9f9;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --text-color: #333;
    --light-text: #777;
    --border-color: #e5e5e5;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

/* 共通コンポーネント */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    color: var(--dark-color);
    font-weight: bold;
    line-height: 1.4;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.accent {
    color: var(--accent-color);
    font-weight: bold;
}

.red-text {
    color: var(--danger-color);
    font-weight: bold;
}

.full-width-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.image-placeholder {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    padding: 30px 15px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border-radius: 8px;
}

section {
    padding: 60px 0;
}

.emphasized {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
}

.action-button, .cta-button, .primary-button, .secondary-button, .submit-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 120, 215, 0.3);
}

.action-button:hover, .cta-button:hover, .primary-button:hover, .secondary-button:hover, .submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 120, 215, 0.4);
    color: white;
}

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

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ヘッダー */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo h1 a {
    color: var(--dark-color);
}

.logo h1 span {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cta-phone {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.cta-phone i {
    margin-right: 8px;
}

.business-hours {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 8px;
}

.cta-button {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--dark-color);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(0, 120, 215, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.badge i {
    margin-right: 8px;
}

.hero-price {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.tax {
    font-size: 0.9rem;
    margin-left: 5px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button {
    background-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.primary-button:hover {
    background-color: #ff7f2a;
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

/* 問題提起セクション */
.problem {
    background-color: var(--light-color);
}

.problem-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.problem-text {
    flex: 1;
    min-width: 320px;
}

.problem-image {
    flex: 1;
    min-width: 300px;
}

.problem-list {
    list-style: none;
    margin-bottom: 25px;
}

.problem-list li {
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: flex-start;
}

.problem-list i {
    color: var(--danger-color);
    margin-right: 10px;
    margin-top: 3px;
}

.solution-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    background-color: rgba(0, 120, 215, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.before-after {
    display: flex;
    gap: 20px;
}

.before, .after {
    flex: 1;
    position: relative;
}

.label {
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: var(--dark-color);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 1;
}

.after .label {
    background-color: var(--success-color);
}

/* サービスセクション */
.price-table {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.price-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    max-width: 350px;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.price-card .price {
    text-align: center;
    display: block;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--accent-color);
}

.price-card .price span {
    font-size: 0.9rem;
    color: var(--light-text);
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
}

.price-card li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.price-card li i {
    color: var(--success-color);
    margin-right: 10px;
}

.price-card .note {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 20px;
    text-align: center;
}

.price-card .action-button {
    width: 100%;
}

.popular {
    border: 2px solid var(--primary-color);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

.discount {
    color: var(--accent-color);
    font-weight: bold;
}

.additional-services {
    margin-top: 50px;
}

.additional-services h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.option-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.option-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    max-width: 300px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.option-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.option-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.option-price {
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* USPセクション */
.usp {
    background-color: var(--light-color);
}

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

.usp-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.usp-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.comparison-table {
    margin-top: 50px;
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background-color: var(--primary-color);
    color: white;
}

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

th {
    font-weight: bold;
}

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

td.highlight {
    background-color: rgba(0, 120, 215, 0.1);
    font-weight: bold;
    color: var(--primary-color);
}

.comparison-note {
    font-size: 0.85rem;
    color: var(--light-text);
    text-align: center;
}

/* コンセプトセクション */
.concept-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.concept-text {
    flex: 1;
    min-width: 300px;
}

.concept-image {
    flex: 1;
    min-width: 300px;
}

.concept-lead {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.concept-text p {
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
    background-color: rgba(0, 120, 215, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 120px;
}

.stat .number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.stat small {
    font-size: 1rem;
}

.stat .label {
    font-size: 0.9rem;
    position: static;
    background: none;
    color: var(--dark-color);
}

.certificates {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.certificate {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.certificate span {
    display: block;
    font-size: 0.85rem;
    margin-top: 5px;
}

.service-area {
    margin-top: 60px;
}

.service-area h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.area-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.area-map {
    flex: 1;
    min-width: 300px;
}

.area-list {
    flex: 1;
    min-width: 300px;
}

.area-main, .area-sub {
    margin-bottom: 15px;
}

.area-list ul {
    list-style: none;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.area-list li {
    background-color: rgba(0, 120, 215, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
}

.area-note {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 20px;
}

/* お客様の声セクション */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin-bottom: 20px;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 0 10px;
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #ffc107;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    padding: 0;
}

.author-info {
    flex-grow: 1;
}

.name {
    font-weight: bold;
}

.location {
    font-size: 0.85rem;
    color: var(--light-text);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.nav-button {
    width: 50px;
    height: 50px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.cleaning-process h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

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

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 15px 0;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* FAQセクション */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.1rem;
    flex-grow: 1;
    margin-right: 40px;
}

.toggle-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.faq-answer {
    background-color: rgba(0, 120, 215, 0.05);
    padding: 20px;
    display: none;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
}

.faq-answer .faq-icon {
    background-color: var(--accent-color);
}

.faq-answer p {
    margin-left: 15px;
}

/* クロージングセクション */
.contact {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background-color: white;
}

.contact .highlight {
    color: var(--light-color);
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    color: var(--dark-color);
}

.cta-lead {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-points {
    margin: 25px 0;
}

.cta-point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

.point-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.point-text h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.phone-button, .line-button {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.phone-button {
    background-color: white;
    color: var(--primary-color);
}

.line-button {
    background-color: #06c755;
    color: white;
}

.phone-button:hover, .line-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.phone-button i, .line-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.business-time {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.required {
    color: var(--danger-color);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.consent {
    display: flex;
    align-items: flex-start;
}

.consent input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.submit-button {
    background-color: var(--accent-color);
    font-size: 1.1rem;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.submit-button:hover {
    background-color: #ff7f2a;
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

.service-area-detail {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.service-area-detail h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.area-link {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.area-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.related-services h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-link {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.related-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-menu {
    flex: 1;
    min-width: 150px;
}

.footer-menu h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: white;
}

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

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

.footer-menu a {
    color: #ccc;
}

.footer-menu a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    font-size: 0.85rem;
    color: #999;
}

.footer-links a:hover {
    color: white;
}

/* フローティングCTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.floating-phone, .floating-contact {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-phone {
    background-color: var(--primary-color);
}

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

.floating-phone i, .floating-contact i {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.floating-phone:hover, .floating-contact:hover {
    transform: translateY(-5px);
    color: white;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price-table, .usp-grid, .option-cards {
        justify-content: center;
    }
    
    .price-card, .option-card {
        max-width: 100%;
    }
    
    .concept-content, .area-content, .cta-container {
        flex-direction: column;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-badges, .hero-buttons, .contact-buttons {
        flex-direction: column;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
    
    .primary-button, .secondary-button, .phone-button, .line-button {
        width: 100%;
    }
    
    .floating-cta {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-phone, .floating-contact {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
    }
}