/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: break-word; /* 모든 요소에 긴 단어 줄바꿈 적용 */
    overflow-wrap: break-word; /* 모든 요소에 긴 텍스트 줄바꿈 적용 */
    max-width: 100%; /* 모든 요소의 최대 너비 제한 */
}

html, body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    overflow-x: hidden; /* 가로 스크롤 방지 */
    word-break: break-word; /* 긴 단어 줄바꿈 */
    overflow-wrap: break-word; /* 긴 텍스트 줄바꿈 */
    max-width: 100vw; /* 뷰포트 너비 제한 */
    position: relative; /* 헤더의 기준점 설정 */
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #2c3e50;
    padding: 1rem 0;
    position: fixed;
    width: 100vw; /* 뷰포트 너비로 설정 */
    top: 0;
    left: 0; /* 왼쪽 위치 명시적 설정 */
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 236, 239, 0.3);
    transition: all 0.3s ease;
    min-height: 70px;
    display: flex;
    align-items: center;
    box-sizing: border-box; /* 패딩과 보더를 너비에 포함 */
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-bottom-color: rgba(233, 236, 239, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 4rem; /* 로고와 메뉴 사이 간격 더 늘림 */
}

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

.logo-main {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    letter-spacing: -1px;
}

.logo-sub {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1; /* 남은 공간을 모두 차지하여 유연하게 조정 */
    justify-content: flex-end; /* 메뉴를 우측으로 정렬 */
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    position: relative;
    background: transparent;
    width: 120px; /* 고정 너비로 레이아웃 안정화 */
    text-align: center;
    box-sizing: border-box; /* 패딩과 보더를 너비에 포함 */
}

.nav-links a:hover {
    background: rgba(44, 62, 80, 0.05);
    color: #2c3e50;
    transform: translateY(-2px); /* 호버 시 위로 살짝 올라가는 효과 */
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.1); /* 호버 시 그림자 효과 추가 */
}

.nav-links a.active {
    background: rgba(44, 62, 80, 0.1);
    color: #2c3e50;
}

.nav-links a::before {
    content: '// ';
    color: #6c757d;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0.8rem; /* 기본 패딩보다 작은 위치로 변경 */
    top: 50%;
    transform: translateY(-50%);
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover {
    background: rgba(44, 62, 80, 0.05);
    color: #2c3e50;
    transform: translateY(-2px); /* 호버 시 위로 살짝 올라가는 효과 */
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.1); /* 호버 시 그림자 효과 추가 */
    padding-left: 2.2rem; /* 패딩 증가로 "// "가 자연스럽게 보임 */
}

/* Mobile Menu Toggle - 기본적으로 숨김 */
.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #2c3e50;
    padding: 140px 0 80px; /* 상단 패딩을 100px에서 140px로 증가 */
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e9ecef;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, #e9ecef 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, #e9ecef 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero .slogan {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #495057;
    font-weight: 300;
}

.hero .vision {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #6c757d;
}

.hero .company-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
    position: relative;
}

.hero .company-name::before {
    content: '{';
    color: #6c757d;
    margin-right: 0.5rem;
}

.hero .company-name::after {
    content: '}';
    color: #6c757d;
    margin-left: 0.5rem;
}

.cta-button {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #495057;
    border-color: #495057;
    transform: translateY(-2px);
}

.cta-button::before {
    content: '// ';
    color: #6c757d;
    margin-right: 0.5rem;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #ffffff;
}

.section {
    margin-bottom: 5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    word-break: break-word; /* 긴 텍스트 줄바꿈 */
    overflow-wrap: break-word; /* 긴 텍스트 줄바꿈 */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::before {
    content: '/* ';
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.section-title::after {
    content: ' */';
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

/* Philosophy Section */
.philosophy-content {
    text-align: center;
}

.philosophy-text {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.philosophy-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.philosophy-card::before {
    content: '{';
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #6c757d;
    font-size: 1.5rem;
    font-family: 'Courier New', monospace;
}

.philosophy-card::after {
    content: '}';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: #6c757d;
    font-size: 1.5rem;
    font-family: 'Courier New', monospace;
}

.philosophy-card:hover {
    border-color: #2c3e50;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.philosophy-card i {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-card p {
    color: #495057;
    line-height: 1.6;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card::before {
    content: '// ';
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.service-card:hover {
    border-color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    color: #2c3e50;
    padding: 0.3rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '→';
    color: #6c757d;
    position: absolute;
    left: 0;
    font-family: 'Courier New', monospace;
}

/* Methodology Section */
.methodology-content {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.methodology-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.methodology-intro p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
}

.methodology-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.flow-step {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
    min-width: 200px;
    position: relative;
}

.flow-step::before {
    content: 'function ';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    color: #6c757d;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

.step-icon {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.flow-step h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.flow-step ul {
    list-style: none;
    font-size: 0.9rem;
    color: #495057;
}

.flow-step li {
    margin: 0.2rem 0;
}

.analysis-types {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.external, .internal {
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.external {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.internal {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

.clustering {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.clustering span {
    background: #2c3e50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.flow-arrow {
    font-size: 2rem;
    color: #6c757d;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.methodology-result {
    text-align: center;
    background: #2c3e50;
    color: white;
    padding: 2rem;
    border-radius: 8px;
}

.methodology-result h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.methodology-result p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* History Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.timeline-content {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    position: relative;
    word-break: break-word; /* 긴 텍스트 줄바꿈 */
    overflow-wrap: break-word; /* 긴 텍스트 줄바꿈 */
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20px;
    width: 0;
    height: 0;
    border-left: 15px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 20px;
    width: 0;
    height: 0;
    border-right: 15px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-year {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.timeline-year::before {
    content: '// ';
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    color: #495057;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.timeline-content li:before {
    content: '•';
    color: #2c3e50;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* References */
.references {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.reference-item {
    background: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    border-left: 4px solid #2c3e50;
    position: relative;
    word-break: break-word; /* 긴 텍스트 줄바꿈 */
    overflow-wrap: break-word; /* 긴 텍스트 줄바꿈 */
}

.reference-item::before {
    content: '// ';
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.reference-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reference-item p {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Contact */
.contact-info {
    background: #2c3e50;
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info h3::before {
    content: '/* ';
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.contact-info h3::after {
    content: ' */';
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.address-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.address-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.address-item p {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo-main {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo-sub {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-mission {
    text-align: center;
    display: flex;
    align-items: center;
}

.footer-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #495057;
    padding-top: 2rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        backdrop-filter: none; /* 모바일에서 backdrop-filter 제거로 fixed 위치 문제 해결 */
        background: rgba(255, 255, 255, 0.98); /* 고정된 배경색으로 변경 */
        width: 100vw; /* 뷰포트 너비로 설정 */
        left: 0; /* 왼쪽 위치 명시적 설정 */
        transform: none; /* transform 효과 제거로 위치 안정화 */
    }
    
    .nav {
        position: relative; /* 햄버거 버튼의 절대 위치 기준점 */
        padding: 0 1rem;
        justify-content: flex-start; /* 로고만 좌측에 배치 */
        gap: 0; /* 모바일에서는 gap 제거 */
        width: 100%; /* 전체 너비 사용 */
    }
    
    .logo {
        flex-shrink: 0; /* 로고 크기 고정 */
        margin-left: 5px; /* 로고 왼쪽 여백 추가 */
    }
    
    .mobile-menu-toggle {
        flex-shrink: 0; /* 햄버거 버튼 크기 고정 */
        display: block !important; /* 모바일에서 강제 표시 */
        background: none;
        border: none;
        color: #2c3e50;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        width: 40px; /* 버튼 너비 고정 */
        height: 40px; /* 버튼 높이 고정 */
        display: flex; /* 아이콘 중앙 정렬 */
        align-items: center; /* 아이콘 세로 중앙 정렬 */
        justify-content: center; /* 아이콘 가로 중앙 정렬 */
        z-index: 1002; /* 모바일 메뉴보다 위에 표시 */
        right: 20px;
        position: absolute;
    }
    
    .nav-links {
        position: fixed; /* fixed로 변경하여 레이아웃 영향 없음 */
        top: 70px; /* 헤더 높이만큼 아래에 고정 */
        left: 0;
        right: 0;
        width: 100vw; /* 뷰포트 너비에 맞춤 */
        max-width: 100vw; /* 최대 너비 제한 */
        background: #ffffff;
        border: 1px solid #e9ecef;
        flex-direction: column;
        padding: 1rem 0;
        display: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 1001;
        max-height: calc(100vh - 70px); /* 화면 높이에서 헤더 높이 제외 */
        overflow-y: auto; /* 내용이 많으면 스크롤 */
        overflow-x: hidden; /* 좌우 스크롤 방지 */
        box-sizing: border-box; /* 패딩과 보더를 너비에 포함 */
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.8rem 2rem;
        text-align: center;
        border-radius: 0;
        width: 100%; /* 부모 너비에 맞춤 */
        max-width: 100%; /* 최대 너비 제한 */
        box-sizing: border-box; /* 패딩과 보더를 너비에 포함 */
        word-wrap: break-word; /* 긴 텍스트 줄바꿈 */
        /* PC용 고정 너비 관련 스타일 제거 */
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .section {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .hero {
        padding: 100px 1rem 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -15px;
        border-right: 15px solid #ffffff;
        border-left: none;
    }
    
    .methodology-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }
    
    .methodology-content {
        padding: 2rem 1.5rem;
    }
    
    .references {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
    }
}

/* 더 작은 모바일 화면 */
@media (max-width: 480px) {
    .header {
        backdrop-filter: none; /* 모바일에서 backdrop-filter 제거로 fixed 위치 문제 해결 */
        background: rgba(255, 255, 255, 0.98); /* 고정된 배경색으로 변경 */
        width: 100vw; /* 뷰포트 너비로 설정 */
        left: 0; /* 왼쪽 위치 명시적 설정 */
        transform: none; /* transform 효과 제거로 위치 안정화 */
    }
    
    .nav {
        position: relative; /* 햄버거 버튼의 절대 위치 기준점 */
        padding: 0 0.5rem;
        justify-content: flex-start; /* 로고만 좌측에 배치 */
        gap: 0; /* 모바일에서는 gap 제거 */
        width: 100%; /* 전체 너비 사용 */
    }
    
    .logo {
        flex-shrink: 0; /* 로고 크기 고정 */
        margin-left: 5px; /* 로고 왼쪽 여백 추가 */
    }
    
    .mobile-menu-toggle {
        flex-shrink: 0; /* 햄버거 버튼 크기 고정 */
        width: 40px; /* 버튼 너비 고정 */
        height: 40px; /* 버튼 높이 고정 */
        display: flex; /* 아이콘 중앙 정렬 */
        align-items: center; /* 아이콘 세로 중앙 정렬 */
        justify-content: center; /* 아이콘 가로 중앙 정렬 */
        z-index: 1002; /* 모바일 메뉴보다 위에 표시 */
        right: 20px;
        position: absolute;
    }
    
    .main-content {
        padding: 1.5rem 0.5rem;
    }
    
    .section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero {
        padding: 90px 0.5rem 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .slogan {
        font-size: 1.2rem;
    }
    
    .hero .company-name {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .methodology-content,
    .references,
    .contact-info {
        padding: 1.5rem 1rem;
    }
}
