/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFFFF;
}

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

/* Color Variables */
:root {
    /* --primary-color: #2C5282; */
    --primary-color: #191970;
    --secondary-color: #718096;
    --accent-color: #E53E3E;
    --background-light: #F7FAFC;
    --text-color: #2D3748;
    --white: #FFFFFF;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-sub {
    font-size: 12px;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.mobile-nav-list li {
    border-bottom: 1px solid #E2E8F0;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1A365D 100%);
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(44, 82, 130, 0.8); */
    background: var(--primary-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--background-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.8;
}

/* News Section */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E2E8F0;
    gap: 20px;
}

.news-date {
    color: var(--secondary-color);
    font-size: 14px;
    min-width: 100px;
}

.news-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    min-width: 80px;
    text-align: center;
}

.news-title {
    color: var(--text-color);
    font-weight: 500;
    flex: 1;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--secondary-color);
    font-size: 14px;
}

.footer-info p {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4A5568;
    color: var(--secondary-color);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Current page indicator */
.nav-list a.current {
    color: var(--primary-color);
}

.nav-list a.current:after {
    width: 100%;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1A365D 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 2px;
}

/* Strengths Detail */
.strength-item {
    margin-bottom: 80px;
}

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

.strength-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.strength-item.reverse .strength-content {
    grid-template-columns: 1fr 2fr;
}

.strength-item.reverse .strength-text {
    order: 2;
}

.strength-item.reverse .strength-visual {
    order: 1;
}

.strength-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.strength-lead {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.strength-description p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.strength-features {
    list-style: none;
    padding: 0;
}

.strength-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-color);
}

.strength-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.strength-icon-large {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 20px 0 15px;
}

.service-card p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--text-color);
    font-size: 14px;
}

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

/* Service Details */
.service-detail-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-item {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-item p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-specs h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.service-specs li {
    padding: 8px 0 8px 20px;
    position: relative;
    color: var(--secondary-color);
}

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

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.industry-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.industry-item p {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Facilities */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.facility-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.facility-image {
    height: 200px;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-placeholder {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.facility-content {
    padding: 30px;
}

.facility-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.facility-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.facility-specs h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.facility-specs ul {
    list-style: none;
    padding: 0;
}

.facility-specs li {
    padding: 4px 0;
    color: var(--secondary-color);
    font-size: 14px;
}

/* Equipment List */
.equipment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.equipment-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.equipment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #E2E8F0;
}

.equipment-name {
    color: var(--text-color);
}

.equipment-count {
    color: var(--primary-color);
    font-weight: 600;
}

/* Quality Control */
.quality-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.quality-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.quality-feature {
    text-align: center;
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.quality-feature h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quality-feature p {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Company Table */
.company-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.company-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #E2E8F0;
}

.company-row:last-child {
    border-bottom: none;
}

.company-label {
    background: var(--background-light);
    padding: 20px;
    font-weight: 600;
    color: var(--primary-color);
    border-right: 1px solid #E2E8F0;
}

.company-value {
    padding: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-item {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mv-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.mv-item p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.mv-description {
    color: var(--secondary-color);
    line-height: 1.8;
    font-weight: 400;
}

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

.mv-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-color);
}

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

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 100px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
}

.timeline-year:after {
    content: '';
    position: absolute;
    right: -6px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    margin-left: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Access */
.access-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.access-info {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.access-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.access-info address {
    font-style: normal;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.access-transport {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Recruitment */
.recruitment-message {
    background: var(--background-light);
}

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

.message-lead {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.message-content p {
    line-height: 1.8;
    color: var(--secondary-color);
}

/* Job Openings */
.job-list {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--background-light);
    padding-bottom: 15px;
}

.job-header h3 {
    color: var(--primary-color);
    font-size: 24px;
}

.job-type {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.job-content h4 {
    color: var(--text-color);
    margin: 20px 0 10px;
    font-size: 18px;
}

.job-content p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.job-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.job-content li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--text-color);
}

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

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Contact CTA */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-phone {
    text-align: center;
}

.cta-phone span {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.cta-phone strong {
    display: block;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.cta-phone small {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Contact Form */
.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--secondary-color);
    line-height: 1.8;
}

.form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-method {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-address,
.contact-phone,
.contact-email,
.contact-hours {
    color: var(--text-color);
}

.contact-hours {
    color: var(--secondary-color);
}

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-light);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #E2E8F0;
}

.faq-question h4 {
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .strength-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .strength-item.reverse .strength-content {
        grid-template-columns: 1fr;
    }

    .strength-item.reverse .strength-text,
    .strength-item.reverse .strength-visual {
        order: 0;
    }

    .company-row {
        grid-template-columns: 1fr;
    }

    .company-label {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .timeline:before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-year {
        width: auto;
        margin-bottom: 10px;
        padding-left: 40px;
    }

    .timeline-year:after {
        left: 15px;
        right: auto;
    }

    .timeline-content {
        margin-left: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cta-buttons {
        gap: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .access-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }
}
