/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Yu Gothic', '游ゴシック', YuGothic, '游ゴシック体', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.accent {
    color: #ff9800;
    font-weight: 700;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-line {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: #ff9800;
    border: 2px solid #ff9800;
}

.btn-secondary:hover {
    background: #ff9800;
    color: white;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.btn-line {
    background: #06c755;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-line i {
    font-size: 1.4rem;
}

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

/* Header and Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: #ff9800;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white !important;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.nav-cta::after {
    display: none;
}

.nav-cta i {
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title small {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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


/* Solution Section */
.solution {
    padding: 80px 0;
}

.solution-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.solution-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.solution-diagram {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 60px;
}

.solution-pillar {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.pillar-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.pillar-icon i {
    font-size: 3.5rem;
    color: #ff9800;
}

.solution-pillar h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    gap: 50px;
    position: relative;
}

.feature-item .feature-content {
    order: 1;
}

.feature-item .feature-image {
    order: 2;
}

.feature-item:nth-child(even) {
    grid-template-columns: 400px 1fr;
}

.feature-item:nth-child(even) .feature-content {
    order: 2;
}

.feature-item:nth-child(even) .feature-image {
    order: 1;
}

.feature-number {
    position: absolute;
    font-size: 12rem;
    font-weight: 100;
    color: #ffe5cc;
    line-height: 1;
    z-index: 0;
    top: -40px;
    left: -30px;
}

.feature-item:nth-child(even) .feature-number {
    left: auto;
    right: -30px;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.feature-image {
    position: relative;
    z-index: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
    flex: 1;
}

.customer-info {
    font-weight: 600;
    color: #ff9800;
}

/* Trial Flow Section */
.trial-flow {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.flow-steps {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 40px 0;
}


.flow-steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    width: 22%;
    text-align: center;
}

.step-number {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: -45px auto 20px;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    position: relative;
    z-index: 3;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Step arrows */
.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 15px solid #ff9800;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: translateY(-50%);
    z-index: 4;
}

.step:last-child::after {
    display: none;
}


/* Total time indicator */
.total-time {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.total-time-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}

.total-time-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 5px;
}

.total-time-note {
    font-size: 0.9rem;
    color: #999;
}

.trial-cta {
    text-align: center;
    background: white;
    padding: 60px 0;
    margin: 60px -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.trial-note {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #333;
}


/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid #ff9800;
    transform: scale(1.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #ff9800;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ff9800;
}

.period {
    font-size: 1.2rem;
    color: #666;
    margin-left: 5px;
}

.price-from {
    font-size: 1.5rem;
    color: #ff9800;
    margin: 0 5px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    margin-bottom: 1.5rem;
}

.discount {
    color: #ff9800;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    margin: 20px 0;
    padding: 15px;
    background: #fff5e5;
    border-radius: 8px;
    border-left: 3px solid #ff9800;
}

.pricing-note p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

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

.faq-item {
    background: #f8f9fa;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: #fff;
    padding: 25px;
    margin: 0;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    border-bottom: 1px solid #eee;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.5rem;
    color: #ff9800;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    color: #666;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px;
    transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

.faq-q, .faq-a {
    color: #ff9800;
    font-weight: 700;
    font-size: 1.3rem;
    margin-right: 8px;
    display: inline-block;
}

/* Staff Section */
.staff {
    padding: 80px 0;
    background: #f8f9fa;
}

.staff-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.staff-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.staff-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.staff-title {
    color: #ff9800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.staff-credentials {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.staff-credentials p {
    margin-bottom: 0.5rem;
    color: #555;
}

.staff-story h4 {
    color: #ff9800;
    margin-bottom: 1rem;
}

.staff-story p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Access Section */
.access {
    padding: 80px 0;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.access-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: #ff9800;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #555;
    line-height: 1.6;
}

.info-item a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
}

.access-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Closing CTA Section */
.closing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cta-highlight {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.cta-primary, .cta-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-primary h3, .cta-secondary h3 {
    color: #333;
    margin-bottom: 1rem;
}

.cta-primary p, .cta-secondary p {
    color: #666;
    margin-bottom: 1.5rem;
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9800;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.line-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.contact-info {
    color: rgba(255, 255, 255, 0.9);
}

.phone-number {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin: 1rem 0;
}

.business-hours {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem;
        display: block;
    }
    
    .nav-cta {
        margin: 1rem 2rem;
        display: inline-block;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 1rem;
        padding: 14px 28px;
    }
    
    
    .solution-diagram {
        flex-direction: column;
        align-items: center;
    }
    
    .staff-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .solution-text h3 {
        font-size: 1.5rem;
    }
    
    .solution-text p {
        font-size: 0.95rem;
    }
    
    .problem-list,
    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .feature-number {
        position: relative;
        font-size: 5rem;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: -40px;
        order: 1;
    }
    
    .feature-item:nth-child(even) .feature-number {
        left: auto;
        right: auto;
    }
    
    /* すべての項目で番号→画像→コンテンツの順に */
    .feature-item .feature-number {
        order: 1;
    }
    
    .feature-item .feature-image {
        order: 2;
        margin-bottom: 20px;
    }
    
    .feature-item .feature-content {
        order: 3;
    }
    
    /* 偶数番目も同じ順序に */
    .feature-item:nth-child(even) .feature-number {
        order: 1;
    }
    
    .feature-item:nth-child(even) .feature-image {
        order: 2;
    }
    
    .feature-item:nth-child(even) .feature-content {
        order: 3;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 15px 20px;
        margin: 0 -15px;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .testimonials-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: #ff9800;
        border-radius: 10px;
    }
    
    .testimonial-item {
        flex: 0 0 85%;
        scroll-snap-align: start;
        max-width: 350px;
    }
    
    .testimonial-item p {
        font-size: 0.9rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .flow-steps,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile timeline adjustments */
    .flow-steps-container {
        flex-direction: column;
        gap: 10px;
        position: relative;
    }
    
    .step {
        width: 100%;
        transform: translateY(0) !important;
        margin-bottom: 40px;
        position: relative;
    }
    
    .step:last-child {
        margin-bottom: 0;
    }
    
    /* デスクトップ版の右矢印を無効化 */
    .step::after {
        display: none !important;
    }
    
    /* モバイル版の下矢印を追加 */
    .step:not(:last-child) {
        position: relative;
    }
    
    .step:not(:last-child) .step-content::after {
        content: '↓';
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2rem;
        color: #ff9800;
        display: block;
        z-index: 5;
        line-height: 1;
    }
    
    .step-number {
        margin: -30px auto 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .usage-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-title small {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .usage-steps {
        grid-template-columns: 1fr;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .pillar-icon {
        width: 120px;
        height: 120px;
    }
    
    .pillar-icon i {
        font-size: 2.5rem;
    }
    
    .solution-pillar h4 {
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .pricing-header h3 {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}