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

        :root {
            --background: #fafaf9;
            --foreground: #404040;
            --card: #ffffff;
            --card-foreground: #404040;
            --primary: #d97757;
            --primary-foreground: #ffffff;
            --secondary: #f5f5f4;
            --secondary-foreground: #404040;
            --muted: #f0efee;
            --muted-foreground: #737373;
            --accent: #5d8c8e;
            --accent-foreground: #ffffff;
            --border: #e7e5e4;
            --radius: 0.75rem;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Demo Banner */
        .demo-banner {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            color: #ffffff;
            text-align: center;
            padding: 0.625rem 1rem;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 60;
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo-circle {
            width: 28px;
            height: 28px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-foreground);
            font-size: 0.75rem;
            font-weight: 700;
        }

        .logo-text {
            font-weight: 700;
            color: var(--foreground);
            font-size: 0.9rem;
        }

        .nav-desktop {
            display: none;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-desktop a {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-desktop a:hover {
            color: var(--foreground);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--primary-foreground);
            padding: 0.625rem 1.25rem;
            border-radius: 0.5rem;
            font-weight: 700;
            font-size: 0.8rem;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-primary:hover {
            background: #c86a4c;
        }

        .btn-line {
            background: #06C755;
            color: #ffffff;
        }

        .btn-line:hover {
            background: #05b34b;
        }

        .btn-desktop {
            display: none;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: var(--foreground);
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
        }

        .menu-icon {
            width: 24px;
            height: 24px;
        }

        .mobile-menu {
            display: none;
            border-top: 1px solid var(--border);
            padding: 1rem 0;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            padding: 0 1rem;
        }

        .mobile-nav a {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            text-decoration: none;
            transition: color 0.2s;
            padding: 0.375rem 0;
        }

        .mobile-nav a:hover {
            color: var(--foreground);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('hero-bg.jpg');
            background-size: cover;
            background-position: center;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }

        .hero-content > div {
            max-width: 42rem;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
        }

        .hero-title {
            font-size: clamp(2rem, 8vw, 3.75rem);
            font-weight: 700;
            color: var(--primary-foreground);
            line-height: 1.4;
            margin-bottom: 1.5rem;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        .hero-title br {
            display: none;
        }

        .hero-description {
            font-size: clamp(1rem, 3vw, 1.25rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            line-height: 1.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--primary);
            color: var(--primary-foreground);
            padding: 1.25rem 1.75rem;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
        }

        .hero-cta:hover {
            background: #c86a4c;
        }

        .hero-note {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.8rem;
            margin-top: 0.75rem;
        }

        .hero-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 8rem;
            background: linear-gradient(to top, var(--background), transparent);
        }

        /* Section Common */
        section {
            padding: 3rem 1rem;
        }

        .section-bg-card {
            background: var(--card);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 0 0.5rem;
        }

        .section-title {
            font-size: clamp(1.5rem, 5vw, 2.25rem);
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 1rem;
            line-height: 1.4;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--muted-foreground);
            line-height: 1.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .stat-card {
            background: var(--background);
            border-radius: 0.75rem;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
            transition: box-shadow 0.2s;
        }

        .stat-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            background: rgba(217, 119, 87, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
        }

        .stat-icon svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
        }

        .stat-value-container {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .stat-value {
            font-size: clamp(2rem, 8vw, 3rem);
            font-weight: 700;
            color: var(--foreground);
            line-height: 1;
        }

        .stat-unit {
            font-size: 0.95rem;
            color: var(--muted-foreground);
        }

        .stat-label {
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 0.25rem;
            font-size: 0.9rem;
        }

        .stat-description {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            line-height: 1.4;
        }

        /* Staff Voices */
        .voices-grid {
            display: grid;
            gap: 1.25rem;
        }

        .voice-card {
            border-radius: 0.875rem;
            padding: 1.25rem;
            position: relative;
        }

        .voice-card:nth-child(1) {
            background: rgba(217, 119, 87, 0.05);
        }

        .voice-card:nth-child(2) {
            background: rgba(93, 140, 142, 0.05);
        }

        .voice-card:nth-child(3) {
            background: var(--secondary);
        }

        .quote-icon {
            position: absolute;
            top: -0.5rem;
            left: -0.5rem;
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-foreground);
            font-size: 1rem;
            font-weight: 700;
        }

        .staff-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.875rem;
            margin-top: 0.5rem;
        }

        .staff-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(217, 119, 87, 0.2), rgba(93, 140, 142, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .staff-initial {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--muted-foreground);
        }

        .staff-info {
            flex: 1;
        }

        .staff-name {
            font-weight: 700;
            color: var(--foreground);
            font-size: 0.95rem;
        }

        .staff-role {
            font-size: 0.8rem;
            color: var(--muted-foreground);
        }

        .staff-tags {
            display: flex;
            gap: 0.375rem;
            margin-top: 0.25rem;
            flex-wrap: wrap;
        }

        .staff-tag {
            font-size: 0.7rem;
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
            background: var(--card);
            color: var(--muted-foreground);
            border: 1px solid var(--border);
        }

        .staff-tag.highlight {
            background: rgba(217, 119, 87, 0.1);
            color: var(--primary);
            border-color: var(--primary);
        }

        .voice-quote {
            color: var(--foreground);
            line-height: 1.7;
            font-size: 0.85rem;
        }

        /* Schedule Section */
        .timeline {
            max-width: 48rem;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 48px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: var(--border);
        }

        .timeline-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.25rem;
            position: relative;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-time {
            width: 48px;
            text-align: right;
            flex-shrink: 0;
            padding-top: 0.125rem;
        }

        .timeline-time-text {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--primary);
        }

        .timeline-dot {
            position: absolute;
            left: 44px;
            top: 6px;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            border: 2px solid var(--card);
            z-index: 10;
        }

        .timeline-content {
            flex: 1;
            padding-left: 0.75rem;
            padding-bottom: 1.25rem;
        }

        .timeline-item:last-child .timeline-content {
            padding-bottom: 0;
        }

        .timeline-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--foreground);
            margin-bottom: 0.25rem;
            line-height: 1.4;
        }

        .timeline-description {
            color: var(--muted-foreground);
            font-size: 0.8rem;
            line-height: 1.5;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .benefit-card {
            background: var(--card);
            border-radius: 0.75rem;
            padding: 1rem;
            border: 1px solid var(--border);
            transition: box-shadow 0.2s;
        }

        .benefit-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: rgba(217, 119, 87, 0.1);
            border-radius: 0.625rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
        }

        .benefit-icon svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
        }

        .benefit-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--foreground);
            margin-bottom: 0.625rem;
        }

        .benefit-list {
            list-style: none;
        }

        .benefit-list li {
            font-size: 0.8rem;
            color: var(--muted-foreground);
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.375rem;
            line-height: 1.5;
        }

        .benefit-list li::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--primary);
            border-radius: 50%;
            margin-top: 0.45rem;
            flex-shrink: 0;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 48rem;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--background);
            border-radius: 0.75rem;
            border: 1px solid var(--border);
            margin-bottom: 0.75rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 0.875rem 1rem;
            font-weight: 600;
            color: var(--foreground);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            font-family: 'Noto Sans JP', sans-serif;
            transition: background 0.2s;
            line-height: 1.5;
        }

        .faq-question:hover {
            background: rgba(0, 0, 0, 0.02);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 1rem 0.875rem;
            color: var(--muted-foreground);
            line-height: 1.7;
            font-size: 0.85rem;
        }

        /* Jobs Section */
        .jobs-grid {
            display: grid;
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        .job-card {
            background: var(--card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: box-shadow 0.2s;
        }

        .job-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .job-header {
            background: rgba(217, 119, 87, 0.1);
            padding: 1.125rem;
        }

        .job-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--foreground);
            line-height: 1.4;
        }

        .job-facility {
            color: var(--muted-foreground);
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

        .job-body {
            padding: 1.125rem;
        }

        .job-detail {
            display: flex;
            align-items: flex-start;
            gap: 0.625rem;
            color: var(--muted-foreground);
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .job-detail svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.375rem;
            padding-top: 0.375rem;
        }

        .job-tag {
            font-size: 0.75rem;
            background: var(--secondary);
            color: var(--secondary-foreground);
            padding: 0.375rem 0.625rem;
            border-radius: 9999px;
        }

        /* CTA Section */
        .cta-box {
            background: linear-gradient(135deg, rgba(217, 119, 87, 0.05), rgba(93, 140, 142, 0.05));
            border-radius: 1rem;
            padding: 2rem 1.5rem;
            text-align: center;
        }

        .cta-title {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 1rem;
            line-height: 1.4;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .cta-description {
            color: var(--muted-foreground);
            margin-bottom: 2rem;
            max-width: 38rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            word-wrap: break-word;
            overflow-wrap: break-word;
            font-size: 0.95rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: #06C755;
            color: #ffffff;
            padding: 1.25rem 1.75rem;
            border-radius: 0.75rem;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 10px 15px -3px rgba(6, 199, 85, 0.3);
            white-space: nowrap;
        }

        .cta-btn:hover {
            background: #05b34b;
        }

        /* Footer */
        .footer {
            background: var(--foreground);
            color: var(--primary-foreground);
            padding: 2.5rem 1rem;
        }

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

        .footer-content {
            display: grid;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .footer-logo-circle {
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .footer-logo-text {
            font-weight: 700;
            font-size: 0.95rem;
        }

        .footer-tagline {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 0.85rem;
        }

        .footer-section-title {
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.625rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.625rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .footer-contact-item svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.875rem;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
        }

        .footer-links {
            display: flex;
            gap: 1rem;
            font-size: 0.75rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: rgba(255, 255, 255, 1);
        }

        /* Responsive */
        @media (min-width: 768px) {
            .demo-banner {
                padding: 0.75rem 1.5rem;
                font-size: 0.875rem;
            }
            
            .hero-title br {
                display: inline;
            }
            
            .nav-desktop {
                display: flex;
            }

            .btn-desktop {
                display: block;
            }
            
            .btn-primary {
                padding: 0.75rem 1.5rem;
                font-size: 0.875rem;
            }

            .menu-toggle {
                display: none;
            }
            
            .header-container {
                padding: 0 1.5rem;
                height: 64px;
            }
            
            .logo-circle {
                width: 32px;
                height: 32px;
                font-size: 0.875rem;
            }
            
            .logo-text {
                font-size: 1rem;
            }
            
            .hero-content {
                padding: 5rem 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 0.875rem;
                margin-bottom: 1rem;
            }
            
            .hero-note {
                font-size: 0.875rem;
                margin-top: 1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }
            
            .stat-card {
                padding: 1.5rem;
            }
            
            .stat-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 1rem;
            }
            
            .stat-icon svg {
                width: 24px;
                height: 24px;
            }
            
            .stat-value {
                font-size: 3rem;
            }
            
            .stat-unit {
                font-size: 1.125rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            .stat-description {
                font-size: 0.875rem;
            }

            .voices-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
            
            .voice-card {
                padding: 1.5rem;
            }
            
            .quote-icon {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
                top: -0.75rem;
                left: -0.75rem;
            }
            
            .staff-header {
                gap: 1rem;
                margin-bottom: 1rem;
            }
            
            .staff-avatar {
                width: 64px;
                height: 64px;
            }
            
            .staff-initial {
                font-size: 1.5rem;
            }
            
            .staff-name {
                font-size: 1rem;
            }
            
            .staff-role {
                font-size: 0.875rem;
            }
            
            .staff-tags {
                gap: 0.5rem;
            }
            
            .staff-tag {
                font-size: 0.75rem;
            }

            .voice-quote {
                font-size: 1rem;
            }

            .timeline::before {
                left: 80px;
            }

            .timeline-time {
                width: 80px;
            }

            .timeline-dot {
                left: 76px;
                width: 12px;
                height: 12px;
            }
            
            .timeline-item {
                gap: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .timeline-content {
                padding-left: 1rem;
                padding-bottom: 1.5rem;
            }
            
            .timeline-time-text {
                font-size: 1.125rem;
            }
            
            .timeline-title {
                font-size: 1.125rem;
            }

            .timeline-description {
                font-size: 1rem;
            }

            .benefits-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }
            
            .benefit-card {
                padding: 1.5rem;
            }
            
            .benefit-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 1rem;
            }
            
            .benefit-icon svg {
                width: 24px;
                height: 24px;
            }
            
            .benefit-title {
                font-size: 1.125rem;
                margin-bottom: 0.75rem;
            }
            
            .benefit-list li {
                font-size: 0.875rem;
                margin-bottom: 0.5rem;
            }
            
            .benefit-list li::before {
                width: 6px;
                height: 6px;
                margin-top: 0.5rem;
            }
            
            .faq-item {
                margin-bottom: 1rem;
            }
            
            .faq-question {
                padding: 1rem 1.5rem;
                font-size: 1rem;
                gap: 1rem;
            }
            
            .faq-answer-content {
                padding: 0 1.5rem 1rem;
                font-size: 1rem;
            }

            .jobs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
                margin-bottom: 3rem;
            }
            
            .job-header {
                padding: 1.5rem;
            }
            
            .job-title {
                font-size: 1.25rem;
            }
            
            .job-facility {
                font-size: 1rem;
            }
            
            .job-body {
                padding: 1.5rem;
            }
            
            .job-detail {
                font-size: 1rem;
                margin-bottom: 1rem;
                gap: 0.75rem;
            }
            
            .job-detail svg {
                width: 20px;
                height: 20px;
            }
            
            .job-tags {
                gap: 0.5rem;
                padding-top: 0.5rem;
            }
            
            .job-tag {
                font-size: 0.875rem;
                padding: 0.5rem 0.75rem;
            }

            .footer {
                padding: 4rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
                margin-bottom: 3rem;
            }
            
            .footer-logo-section {
                margin-bottom: 1rem;
            }
            
            .footer-logo-circle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .footer-logo-text {
                font-size: 1.125rem;
            }
            
            .footer-tagline {
                font-size: 0.875rem;
            }
            
            .footer-description {
                font-size: 1rem;
            }
            
            .footer-section-title {
                font-size: 1.125rem;
                margin-bottom: 1rem;
            }
            
            .footer-contact {
                gap: 0.75rem;
            }
            
            .footer-contact-item {
                font-size: 1rem;
                gap: 0.75rem;
            }
            
            .footer-contact-item svg {
                width: 20px;
                height: 20px;
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding-top: 2rem;
                gap: 1rem;
            }
            
            .footer-copyright {
                font-size: 0.875rem;
            }
            
            .footer-links {
                font-size: 0.875rem;
                gap: 1.5rem;
            }
            
            section {
                padding: 5rem 1.5rem;
            }
            
            .section-header {
                margin-bottom: 3rem;
                padding: 0;
            }
            
            .cta-description {
                font-size: 1rem;
            }
            
            .hero-cta {
                font-size: 1.125rem;
                padding: 1.5rem 2rem;
            }
            
            .cta-box {
                padding: 3rem 2.5rem;
            }
            
            .cta-btn {
                font-size: 1.125rem;
                padding: 1.5rem 2rem;
            }
            
            .section-subtitle {
                font-size: 1.125rem;
            }
        }

        @media (min-width: 640px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
