/* PDS Korea Theme - Main Styles - Redesigned */

/* ============================================
   Reset & Base
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ============================================
   Variables
   ============================================ */
:root {
    --primary-green: #4CAF50;
    --primary-green-dark: #388E3C;
    --primary-green-light: #E8F5E9;
    --accent-gold: #D4AF37;
    --text-dark: #212121;
    --text-medium: #666;
    --text-light: #999;
    --bg-white: #fff;
    --bg-light: #f5f5f5;
    --bg-section-alt: #fafafa;
    --border: #e0e0e0;
}

/* ============================================
   Animations
   ============================================ */

/* ============================================
   Scroll Animation (새로 구현)
   ============================================ */

/* 기본 상태: 요소는 보이도록 (JavaScript 없이도 접근 가능) */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* JavaScript가 활성화된 경우: 초기 상태는 숨김 */
.js .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    /* 스크롤 애니메이션 전용 transition (호버 효과와 완전 분리) */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 애니메이션 완료 상태: 보이도록 */
.js .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* WordPress admin bar support */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

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

.site-branding {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.site-branding .custom-logo-link,
.site-branding .custom-logo-link:visited {
    text-decoration: none;
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 1;
}

.site-branding img {
    max-height: 70px;
    width: auto;
    margin: 0;
    padding: 0;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ============================================
   Container & Section
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

/* ============================================
   Hero Section - Slider
   ============================================ */
#hero {
    padding: 0;
    margin-top: 0;
    position: relative;
}

.hero-section {
    position: relative;
    overflow: visible;
}

.hero-slider {
    position: relative;
    width: 100%;
    /* 1416:512 비율 유지 */
    aspect-ratio: 1416 / 512;
    border-radius: 12px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
}

.hero-section .container {
    position: relative;
    overflow: visible;
}

.hero-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-slider-controls button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.slider-prev,
.slider-next {
    padding: 0;
}

.hero-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    width: 100%;
    justify-content: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Intro Section
   ============================================ */
#intro {
    background-color: var(--bg-white);
    padding-top: 4.5rem;
    padding-bottom: 3rem;
}

/* WordPress admin bar support for first section */
body.admin-bar #intro {
    padding-top: 4.5rem;
}

@media screen and (max-width: 782px) {
    body.admin-bar #intro {
        padding-top: 4.5rem;
    }
}

/* Mobile adjustments for intro section */
@media screen and (max-width: 768px) {
    #intro {
        padding-top: 3.5rem;
    }
    
    body.admin-bar #intro {
        padding-top: 3.5rem;
    }
}

.intro-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 2rem;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.intro-text p {
    margin-bottom: 1rem;
}

.intro-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--border);
    color: var(--text-light);
}

/* ============================================
   Features Section
   ============================================ */
#features {
    background-color: var(--bg-white);
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.25rem 0;
}

/* 호버 효과: 스크롤 애니메이션과 완전 분리 */
.feature-card {
    /* 호버 효과 전용 transition (항상 빠르게 작동) */
    transition: transform 0.15s ease, opacity 0.15s ease;
}

/* 스크롤 애니메이션: opacity와 transform은 별도로 처리 */
.js .feature-card.animate-on-scroll {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 애니메이션 완료 후: 호버 효과를 위한 빠른 transition 적용 */
.js .feature-card.animate-on-scroll.visible {
    transition: opacity 0.8s ease-out, transform 0.15s ease;
}

.feature-card:hover {
    transform: translateX(5px);
    opacity: 0.9;
    /* 호버 시 항상 빠른 transition 적용 */
    transition: transform 0.15s ease, opacity 0.15s ease !important;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Process Overview Section
   ============================================ */
#process-overview {
    background-color: var(--bg-section-alt);
}

.process-overview-section .section-title {
    margin-bottom: 1.5rem;
}

.quote-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    padding: 2rem;
    margin: 2rem 0 0.5rem 0;
    border-left: 4px solid var(--primary-green);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quote-box:hover {
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.2);
    transform: translateX(5px);
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    opacity: 0.2;
    line-height: 1;
}

.quote-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}


/* ============================================
   Process Steps Section
   ============================================ */
#process-steps {
    padding-top: 0.5rem;
    background-color: var(--bg-section-alt);
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-header {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    min-width: 32px;
    height: 32px;
    background-color: var(--primary-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 0.25rem;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 32px;
}

.step-description {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.step-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.step-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.step-images img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.step-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Services Section
   ============================================ */
#services {
    background-color: var(--primary-green-light);
    padding-top: 3rem;
    margin-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

/* 호버 효과: 스크롤 애니메이션과 완전 분리 */
.service-card {
    /* 호버 효과 전용 transition (항상 빠르게 작동) */
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

/* 스크롤 애니메이션: opacity와 transform은 별도로 처리 */
.js .service-card.animate-on-scroll {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 애니메이션 완료 후: 호버 효과를 위한 빠른 transition 적용 */
.js .service-card.animate-on-scroll.visible {
    transition: opacity 0.8s ease-out, box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    border-color: var(--primary-green);
    /* 호버 시 항상 빠른 transition 적용 */
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease !important;
}

.service-card-large {
    grid-column: span 2;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
}

/* ============================================
   Image Sections (AU1, AU2)
   ============================================ */
.section-image-au1 {
    padding: 1.5rem 0 0.75rem 0;
    background-color: var(--bg-section-alt);
    margin-top: 0;
}

.section-image-au2 {
    padding-top: 0.25rem;
    padding-bottom: 1.5rem;
    background-color: var(--bg-section-alt);
}

.section-image-au1 img,
.section-image-au2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ============================================
   About Section
   ============================================ */
#about {
    padding-top: 1.5rem;
    background-color: var(--bg-section-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

.about-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
}

/* 호버 효과: 스크롤 애니메이션과 완전 분리 */
.about-item {
    /* 호버 효과 전용 transition (항상 빠르게 작동) */
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

/* 스크롤 애니메이션: opacity와 transform은 별도로 처리 */
.js .about-item.animate-on-scroll {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 애니메이션 완료 후: 호버 효과를 위한 빠른 transition 적용 */
.js .about-item.animate-on-scroll.visible {
    transition: opacity 0.8s ease-out, box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.about-item:hover {
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-green);
    /* 배경색은 하얀색으로 유지 */
    background-color: var(--bg-white);
    /* 호버 시 항상 빠른 transition 적용 */
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease !important;
}

.about-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.about-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-item ul {
    list-style: none;
    padding: 0;
}

.about-item ul li {
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.about-item strong {
    color: var(--text-dark);
}

.awards-section {
    margin-top: 1.5rem;
}

.awards-placeholder {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    color: var(--text-light);
}

/* ============================================
   Greeting Section
   ============================================ */
#greeting {
    background-color: var(--bg-white);
    padding-bottom: 0;
}

#history {
    background-color: var(--bg-white);
}

#team {
    background-color: var(--bg-white);
    padding-top: 0;
}

#final {
    background-color: var(--bg-section-alt);
}

.greeting-content {
    max-width: 900px;
    margin: 0 auto;
}

.greeting-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.greeting-text p {
    margin-bottom: 1rem;
}


/* ============================================
   History Section
   ============================================ */
.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.history-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Team Section
   ============================================ */
.team-image {
    max-width: 900px;
    margin: 0 auto;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ============================================
   Final Section
   ============================================ */

.final-content {
    max-width: 900px;
    margin: 0 auto;
}

.final-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.final-content p:last-child {
    margin-bottom: 0;
}

.final-content .final-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.9;
    text-align: left;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background-color: var(--text-dark);
    color: #fff;
    padding: 3rem 0 6rem;
    margin-bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-summary p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--primary-green);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.floating-download-button {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green);
    color: #fff;
    padding: 0 1.5rem;
    margin: 0;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    width: auto;
    min-width: 280px;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    box-sizing: border-box;
    outline: none;
    overflow: hidden;
}

.floating-download-button:hover {
    background-color: var(--primary-green-dark);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    background-color: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.scroll-to-top span {
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-3px);
}

/* ============================================
   Responsive - One Layout for All
   ============================================ */
@media screen and (max-width: 768px) {
    .header-container {
        padding: 0.4rem 1rem;
    }
    
    .site-branding img {
        max-height: 50px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 1rem;
        gap: 0;
        display: none;
        align-items: stretch;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .hero-section .container {
        padding: 0 1rem;
    }
    
    .hero-slider-controls {
        padding: 0 0.5rem;
    }

    .hero-slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    /* Mobile text size adjustments - overall reduction */
    body {
        font-size: 14px;
    }
    
    /* Title level adjustments for mobile */
    .section-title {
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .about-subtitle {
        font-size: 1.15rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .final-content .final-highlight {
        font-size: 1.15rem;
    }

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

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
}
