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

:root {
    --primary-gray: #2c3e50;
    --secondary-gray: #34495e;
    --light-gray: #ecf0f1;
    --primary-yellow: #f1c40f;
    --secondary-yellow: #f39c12;
    --dark-yellow: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-gray: #7f8c8d;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'MS PGothic', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

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

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

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown > .nav-link::after {
    display: none;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-light);
    min-width: 250px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(241, 196, 15, 0.1);
    color: var(--primary-gray);
    padding-left: 2rem;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.85) 0%,
        rgba(52, 73, 94, 0.75) 50%,
        rgba(241, 196, 15, 0.2) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 2rem;
    display: inline-block;
}

.badge-text {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--light-gray);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-feature {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-tag {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: rgba(241, 196, 15, 0.2);
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-3px);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gray);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 2px;
}

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

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-left {
        position: static;
    }

    .why-choose-left .section-title {
        text-align: center;
    }

    .why-choose-left .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .why-choose-intro {
        text-align: center;
    }

    .why-choose-cta {
        text-align: center;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-img {
        min-height: 500px;
    }
}

.service-card {
    background-color: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

a.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-yellow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover,
a.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
}

.service-card:hover::before,
a.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
a.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke-width: 2.5;
}

.service-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%);
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-choose-left {
    position: sticky;
    top: 100px;
}

.why-choose-left .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.why-choose-left .section-title::after {
    left: 0;
    transform: none;
}

.why-choose-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.why-choose-cta {
    margin-top: 2rem;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-gray);
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 2px solid var(--primary-gray);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.cta-button-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-gray);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.3);
}

.reasons-list {
    width: 100%;
}

.reason-item {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.reason-item.active {
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
}

.reason-item.active::before {
    transform: scaleX(1);
}

.reason-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.reason-header:hover {
    background-color: rgba(241, 196, 15, 0.08);
}

.reason-header:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: -2px;
}

.reason-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 50px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    flex-shrink: 0;
    position: relative;
}

.reason-item.active .reason-number {
    transform: scale(1.1);
}

.reason-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-gray);
    line-height: 1.3;
    flex: 1;
    margin: 0;
}

.reason-icon {
    width: 24px;
    height: 24px;
    color: var(--text-gray);
    transition: all 0.3s ease;
    flex-shrink: 0;
    background-color: rgba(241, 196, 15, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.reason-icon svg {
    width: 100%;
    height: 100%;
}

.reason-item.active .reason-icon {
    transform: rotate(180deg);
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.reason-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.reason-item.active .reason-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.reason-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.about-wrapper {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    min-height: 600px;
}

.about-image {
    width: 300px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: stretch;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 600px;
}

.about-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-content {
    flex: 1;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--primary-gray);
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-feature {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-feature:last-child {
    margin-bottom: 0;
}

.about-feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-feature strong {
    color: var(--primary-gray);
    font-weight: 600;
}

.about-conclusion {
    font-size: 1.1rem;
    color: var(--primary-gray);
    font-weight: 500;
    line-height: 1.8;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1), rgba(243, 156, 18, 0.05));
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
}

.about-cta {
    margin-top: 2rem;
}


/* Stats Section */
.stats-section {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--secondary-gray) 100%);
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.stats-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Customer Story Section */
.customer-story-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-card {
    background-color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-yellow);
}

.story-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-header {
    margin-bottom: 2rem;
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.story-company {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

.story-media {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
}

.story-content {
    flex: 1;
    margin-bottom: 2rem;
    padding: 0 2.5rem;
}

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

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

.story-label {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.story-label::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    margin-right: 0.8rem;
    border-radius: 2px;
}

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

.story-list li {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.story-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.story-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.story-footer {
    margin-top: auto;
    padding: 1.5rem 2.5rem 2.5rem;
    border-top: 1px solid var(--light-gray);
}

.story-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.story-link:hover {
    color: var(--secondary-yellow);
}

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

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: var(--text-light);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-date {
    color: var(--text-gray);
}

.blog-category {
    color: var(--primary-yellow);
    font-weight: 600;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.blog-link:hover {
    color: var(--secondary-yellow);
    transform: translateX(5px);
}

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

/* News Section */
.news-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background-color: var(--text-light);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.news-date {
    color: var(--text-gray);
}

.news-category {
    color: var(--primary-yellow);
    font-weight: 600;
}

.news-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex: 1;
}

.news-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.news-link:hover {
    color: var(--secondary-yellow);
}

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

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 120px;
    overflow: hidden;
}

.client-logo:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.client-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover .client-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--secondary-gray) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(243, 156, 18, 0.05) 100%);
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

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

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.banner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.banner-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    min-width: 200px;
    text-align: center;
}

.banner-btn-primary {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
}

.banner-btn-primary:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-3px);
}

.banner-btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.banner-btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-gray);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--primary-gray);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

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

.footer-heading {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-yellow);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

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

/* Contact Page */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--secondary-gray) 100%);
    color: var(--text-light);
    margin-top: 70px;
}

.contact-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Policy Section */
.policy-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--text-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-item {
    margin-bottom: 2.5rem;
}

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

.policy-heading {
    font-size: 1.5rem;
    color: var(--primary-gray);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.policy-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-list {
    margin: 1rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.policy-list li {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.policy-list li:last-child {
    margin-bottom: 0;
}

.policy-contact {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.policy-contact p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-contact p:last-child {
    margin-bottom: 0;
}

.policy-contact a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
}

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

.policy-date {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1rem;
    font-style: italic;
}

/* About Page Styles */
.about-page-hero {
    position: relative;
    height: 400px;
    background-image: url('./images/about-hero.png'),linear-gradient(100deg,#6b73ff 0%,#000dff 100%) !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Company Philosophy Section */
.company-philosophy {
    padding: 6rem 0;
    background-color: var(--text-light);
}

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

.philosophy-item {
    margin-bottom: 3rem;
}

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

.philosophy-heading {
    font-size: 1.8rem;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-yellow);
}

.philosophy-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.philosophy-text strong {
    color: var(--primary-gray);
    font-weight: 600;
}

/* Company Strengths Section */
.company-strengths {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
}

.strengths-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.strengths-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.strength-part {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strength-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.strength-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.strength-part-title {
    font-size: 1.2rem;
    color: var(--primary-gray);
    font-weight: 600;
    line-height: 1.6;
    padding: 1.5rem;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Support Approach Section */
.support-approach {
    padding: 6rem 0;
    background-color: var(--text-light);
}

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

.approach-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.approach-text strong {
    color: var(--primary-gray);
    font-weight: 600;
}

/* Company Info Section */
.company-info-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
}

.company-info-table {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--light-gray);
    padding: 1.5rem 2rem;
}

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

.info-label {
    font-weight: 600;
    color: var(--primary-gray);
    font-size: 1rem;
}

.info-value {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* History Timeline Section */
.history-section {
    padding: 6rem 0;
    background-color: var(--text-light);
    position: relative;
    background-image: url('./images/section-bg-hero3.png');
    background-size: cover;
    background-position: center;
}

.history-section .container {
    position: relative;
    z-index: 1;
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-yellow);
    border: 3px solid var(--text-light);
    box-shadow: 0 0 0 3px var(--primary-yellow);
}

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

.timeline-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.3rem;
    color: var(--primary-gray);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.timeline-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Members Section */
.members-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
}

.members-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.member-card {
    background-color: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-info {
    padding: 2.5rem;
}

.member-name {
    font-size: 1.8rem;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    font-size: 1.1rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-bio {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.member-bio:last-of-type {
    margin-bottom: 0;
}

.member-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.member-link:hover {
    color: var(--secondary-yellow);
    text-decoration: underline;
}

/* Members CTA Section */
.members-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--secondary-gray) 100%);
    color: var(--text-light);
}

.members-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.members-cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.members-cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-phone {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-phone strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.phone-link {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--secondary-yellow);
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0 6rem;
    background-color: #ffffff;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gray);
    margin-bottom: 0.8rem;
}

.required {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

.form-note {
    font-size: 0.85rem;
    font-weight: normal;
    color: var(--text-gray);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.1);
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--primary-yellow);
    background-color: rgba(241, 196, 15, 0.05);
}

.checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-yellow);
}

.checkbox-input:checked + span {
    color: var(--primary-gray);
    font-weight: 600;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.privacy-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--secondary-yellow);
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 3rem;
}

.form-submit {
    padding: 1.2rem 4rem;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.form-submit:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
    }

    .nav-menu.active {
        max-height: 90vh;
        overflow-y: auto;
        padding: 2rem 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        font-size: 1rem;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 0;
        box-shadow: none;
        background-color: rgba(52, 73, 94, 0.8);
        border-radius: 0;
        padding: 0;
        width: 100%;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu a {
        color: var(--text-light);
        padding: 0.8rem 2rem 0.8rem 3rem;
        font-size: 0.9rem;
        display: block;
    }

    .dropdown-menu a:hover {
        background-color: rgba(241, 196, 15, 0.2);
        padding-left: 3.5rem;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-content {
        padding: 2rem 1rem;
    }

    .badge-text {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }

    .feature-tag {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .services {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .why-choose {
        padding: 4rem 0;
    }

    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-left {
        position: static;
    }

    .why-choose-left .section-title {
        text-align: center;
    }

    .why-choose-left .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .why-choose-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .why-choose-cta {
        margin-bottom: 0;
        text-align: center;
    }

    .cta-button-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .reason-header {
        padding: 1.5rem;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .reason-number {
        font-size: 2.5rem;
        min-width: 60px;
    }

    .reason-title {
        font-size: 1.2rem;
        flex: 1;
        min-width: 200px;
    }

    .reason-icon {
        width: 20px;
        height: 20px;
    }

    .reason-content {
        padding: 0 1.5rem !important;
    }

    .reason-item.active .reason-content {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
    }

    .reason-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .results-section,
    .blog-section,
    .news-section,
    .clients-section {
        padding: 4rem 0;
    }

    .story-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-card {
        padding: 2rem;
    }

    .story-company {
        font-size: 1.2rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .news-date {
        min-width: auto;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-img {
        min-height: 400px;
    }

    .about-content-wrapper {
        gap: 2rem;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-features {
        padding: 1.5rem;
    }

    .stats-section {
        padding: 3rem 1.5rem;
    }

    .stats-title {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .cta-banner {
        padding: 4rem 0;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

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

    .banner-btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }

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

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-hero {
        padding: 5rem 0 2.5rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-intro {
        font-size: 0.95rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .about-page-hero {
        height: 300px;
        background-attachment: scroll;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .philosophy-heading {
        font-size: 1.5rem;
    }

    .strengths-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strength-image {
        height: 250px;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .info-label {
        font-weight: 600;
        margin-bottom: 0.3rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: -1.75rem;
    }

    .members-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .members-cta-title {
        font-size: 1.8rem;
    }

    .policy-heading {
        font-size: 1.3rem;
    }

    .policy-text,
    .policy-list li {
        font-size: 0.95rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .story-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-card {
        padding: 2rem;
    }

    .story-company {
        font-size: 1.2rem;
    }

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

    .client-logo {
        padding: 1.5rem;
        min-height: 100px;
    }

    .client-img {
        max-height: 60px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 10px;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .dropdown-menu {
        width: 100%;
        min-width: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 1.5rem 1.2rem;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .why-choose-intro {
        font-size: 0.95rem;
    }

    .cta-button-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .reason-header {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .reason-number {
        font-size: 2rem;
        min-width: 50px;
    }

    .reason-title {
        font-size: 1.1rem;
    }

    .reason-icon {
        width: 18px;
        height: 18px;
    }

    .reason-content {
        padding: 0 1.2rem !important;
    }

    .reason-item.active .reason-content {
        padding: 0 1.2rem 1.2rem 1.2rem !important;
    }

    .reason-description {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-img {
        height: 10px;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .about-wrapper {
        gap: 1.5rem;
    }

    .about-image {
        max-width: 100%;
    }

    .about-img {
        min-height: 300px;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-features {
        padding: 1.2rem;
    }

    .about-feature {
        font-size: 0.9rem;
    }

    .about-conclusion {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .stats-section {
        padding: 2rem 1.5rem;
    }

    .stats-section {
        padding: 2rem 1rem;
    }

    .stats-title {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .cta-banner {
        padding: 3rem 0;
    }

    .banner-title {
        font-size: 1.7rem;
    }

    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .banner-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-width: auto;
    }

    .client-logo {
        padding: 1.5rem 1rem;
        min-height: 90px;
    }

    .client-img {
        max-height: 50px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-hero {
        padding: 6rem 0 3rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-phone {
        padding: 1.5rem;
    }

    .phone-link {
        font-size: 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-submit {
        padding: 1rem 3rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Service Page Styles */
:root {
    --service-blue: #3498db;
    --service-blue-dark: #2980b9;
    --service-blue-light: #5dade2;
    --service-pink: #e91e63;
    --service-pink-light: #f48fb1;
}

.service-hero {
    padding: 10rem 0 6rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.service-hero-blue {
    background-image: url('./images/seo-consulting.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--text-light);
}



.service-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--primary-gray);
}

.service-hero-badge {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-yellow);
    letter-spacing: 0.1em;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.hero-line-1,
.hero-line-2,
.hero-line-3,
.hero-line-4 {
    display: block;
}

.hero-line-1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-line-2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-line-3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-line-4 {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.service-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

/* Client Logos Section */
.client-logos-section {
    padding: 4rem 0;
    background-color: var(--text-light);
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.client-logo-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.client-logos-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 2;
}

/* Problems Section */
.service-problems {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background-color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.problem-number {
    font-size: 0.9rem;
    color: var(--service-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.problem-title {
    font-size: 1.3rem;
    color: var(--primary-gray);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.problem-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.problem-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--service-blue-light) 0%, var(--service-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    font-weight: bold;
}

.solution-banner {
    background: linear-gradient(135deg, var(--service-blue) 0%, var(--service-blue-dark) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: var(--text-light);
    box-shadow: 0 8px 40px rgba(52, 152, 219, 0.3);
}

.solution-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.solution-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.solution-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.solution-phone {
    margin-top: 1rem;
}

.solution-phone p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Success Points Section */
.service-success-points {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.success-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.success-subtitle {
    font-size: 1.8rem;
    color: var(--service-blue);
    margin: 1rem 0;
    font-weight: 600;
}

.success-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.success-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.success-point-card {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--text-light) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.success-point-card:hover {
    border-color: var(--service-blue);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
    transform: translateY(-3px);
}

.point-icon {
    font-size: 1rem;
    color: var(--service-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.point-title {
    font-size: 1.3rem;
    color: var(--primary-gray);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.point-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.point-mark {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--service-blue-light) 0%, var(--service-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: bold;
}

/* Process Section */
.service-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.process-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.process-subtitle {
    font-size: 1.8rem;
    color: var(--service-blue-dark);
    margin: 1rem 0;
    font-weight: 600;
}

.process-description {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-phase {
    margin-bottom: 4rem;
    background-color: var(--text-light);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--service-blue);
}

.phase-number {
    font-size: 1.2rem;
    color: var(--service-blue);
    font-weight: 600;
    white-space: nowrap;
}

.phase-title {
    font-size: 1.8rem;
    color: var(--primary-gray);
    font-weight: 600;
}

.phase-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-step {
    padding-left: 2rem;
    border-left: 3px solid var(--service-blue-light);
    position: relative;
}

.phase-step::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 13px;
    height: 13px;
    background-color: var(--service-blue);
    border-radius: 50%;
    border: 3px solid var(--text-light);
}

.step-title {
    font-size: 1.3rem;
    color: var(--primary-gray);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.process-footer {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 3rem 0;
    line-height: 1.8;
}

.process-cta,
.pricing-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background-color: var(--text-light);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-text {
    font-size: 1.3rem;
    color: var(--service-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-contact {
    margin-top: 1.5rem;
}

.cta-contact p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-gray);
}

/* Comparison Section */
.service-comparison {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.comparison-subtitle {
    font-size: 1.8rem;
    color: var(--service-blue);
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
}

.comparison-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--text-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--service-blue) 0%, var(--service-blue-dark) 100%);
    color: var(--text-light);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    width: 150px;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-label {
    font-weight: 600;
    color: var(--primary-gray);
    background-color: #f8f9fa;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary-gray);
}

.comparison-footer {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 2rem;
}

/* Pricing Section */
.service-pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-subtitle {
    font-size: 1.8rem;
    color: var(--service-blue-dark);
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--text-light);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, var(--service-blue) 0%, var(--service-blue-dark) 100%);
    padding: 3rem;
    text-align: center;
    color: var(--text-light);
}

.pricing-initial {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pricing-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.pricing-value {
    font-size: 4rem;
    font-weight: bold;
}

.pricing-content {
    padding: 3rem;
}

.pricing-content-title {
    font-size: 1.5rem;
    color: var(--primary-gray);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.pricing-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-gray);
    border-bottom: 1px solid #e9ecef;
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--service-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-monthly,
.pricing-period {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 2px solid #e9ecef;
    margin-top: 1.5rem;
}

.pricing-monthly .pricing-value,
.pricing-period .pricing-value {
    font-size: 2rem;
    color: var(--service-blue);
    font-weight: bold;
}

.pricing-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.pricing-footer {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 2rem;
    line-height: 1.8;
}

/* Results Section */
.service-results {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.results-subtitle {
    font-size: 1.8rem;
    color: var(--service-blue);
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
}

.results-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.result-card {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--text-light) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--service-blue);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
    transform: translateY(-3px);
}

.result-company {
    font-size: 1rem;
    color: var(--service-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-title {
    font-size: 1.4rem;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.result-details p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.result-details strong {
    color: var(--primary-gray);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

/* Consultant Section */
.service-consultant {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.consultant-subtitle {
    font-size: 1.8rem;
    color: var(--service-blue-dark);
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
}

.consultant-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.consultant-card {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 3rem;
}

.consultant-image {
    width: 300px;
    flex-shrink: 0;
}

.consultant-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consultant-info {
    flex: 1;
    padding: 3rem;
}

.consultant-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.consultant-name {
    font-size: 2rem;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.consultant-role {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.consultant-title {
    font-size: 1rem;
    color: var(--service-blue);
    font-weight: 500;
    line-height: 1.6;
}

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

.consultant-section-title {
    font-size: 1.3rem;
    color: var(--primary-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.consultant-footer {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 3rem;
}

/* FAQ Section */
.service-faq {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.faq-subtitle {
    font-size: 1.8rem;
    color: var(--service-blue);
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: var(--text-light);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--service-blue);
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    cursor: pointer;
}

.faq-q {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--service-blue) 0%, var(--service-blue-dark) 100%);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 1.2rem;
    color: var(--primary-gray);
    font-weight: 600;
    line-height: 1.6;
    flex: 1;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
}

.faq-a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--service-blue-light) 0%, var(--service-blue) 100%);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-answer-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    flex: 1;
}

/* Responsive Styles for Service Pages */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2rem;
    }

    .hero-line-1 {
        font-size: 1.8rem;
    }

    .hero-line-2 {
        font-size: 2.2rem;
    }

    .hero-line-3 {
        font-size: 1.4rem;
    }

    .hero-line-4 {
        font-size: 2.5rem;
    }

    .client-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-points-grid {
        grid-template-columns: 1fr;
    }

    .process-phase {
        padding: 2rem 1.5rem;
    }

    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        min-width: 600px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .consultant-card {
        flex-direction: column;
    }

    .consultant-image {
        width: 100%;
        height: 300px;
    }
}

/* SEO Writing Page Styles */
.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.service-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.85) 0%,
        rgba(52, 73, 94, 0.75) 50%,
        rgba(241, 196, 15, 0.2) 100%
    );
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-hero-features {
    margin: 2rem 0;
}

.hero-feature-item {
    font-size: 1.1rem;
    margin: 0.8rem 0;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* CTA button secondary for dark backgrounds (service-hero) */
.service-hero .cta-button-secondary,
.service-hero-cta .cta-button-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 2px solid var(--text-light);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.service-hero .cta-button-secondary:hover,
.service-hero-cta .cta-button-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-gray);
    transform: translateY(-3px);
}

.seowriting-intro {
    padding: 4rem 0;
    background-color: var(--text-light);
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-gray);
    max-width: 900px;
    margin: 2rem auto 0;
}

.seowriting-features {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    padding: 1.5rem 2rem 0.5rem;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-gray);
    padding: 0 2rem 1rem;
    line-height: 1.5;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    padding: 0 2rem 2rem;
}

.features-cta {
    text-align: center;
    padding: 3rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.pricing-basic,
.pricing-options {
    background-color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-value-large {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 12px;
}

.pricing-value-large .pricing-label {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-value-large .pricing-value {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
}

.pricing-options-list {
    list-style: none;
    padding: 0;
}

.pricing-options-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-price {
    font-weight: bold;
    color: var(--primary-gray);
}

.pricing-examples {
    margin-top: 4rem;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-gray), var(--secondary-gray));
    color: var(--text-light);
}

.pricing-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-table th:last-child {
    border-right: none;
}

.pricing-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
    border-right: 1px solid var(--light-gray);
}

.pricing-table td:last-child {
    border-right: none;
}

.pricing-label-cell {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--primary-gray);
}

.process-step {
    background-color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.seowriting-team {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 2rem 0 3rem;
    line-height: 2;
}

.team-structure {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    margin: 3rem 0;
}

.structure-note {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.writers-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gray);
    text-align: center;
    margin: 4rem 0 3rem;
}

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

.writer-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-yellow);
}

.writer-age {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

.writer-qualification {
    font-size: 1rem;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.writer-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.seowriting-quality {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.quality-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    text-align: center;
    margin: 2rem 0 3rem;
}

.quality-steps {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.quality-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    align-items: flex-start;
}

.quality-step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    min-width: 50px;
}

.quality-step-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

.quality-step-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.editor-intro {
    margin: 4rem 0;
    text-align: center;
}

.editor-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 2rem;
}

.editor-card {
    background-color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.editor-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.editor-profile {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.quality-approach {
    margin-top: 4rem;
    background-color: var(--text-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.approach-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 2;
}

.seowriting-beforeafter {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.beforeafter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.beforeafter-item {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.beforeafter-label {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 2rem;
}

.beforeafter-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--text-light);
    border-radius: 12px;
}

.beforeafter-note {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.beforeafter-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 1.5rem auto 2rem;
}

.finance-results {
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: 16px;
}

.finance-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gray);
    text-align: center;
    margin-bottom: 2rem;
}

.finance-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 2;
    margin-bottom: 2rem;
}

.finance-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.finance-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.8;
}

.finance-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.finance-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.finance-example {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-yellow);
}

.example-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.example-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.testimonial {
    margin-top: 4rem;
}

.testimonial-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: var(--text-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-company {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-details {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 2;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: 16px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .writers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .finance-examples {
        grid-template-columns: 1fr;
    }

    .beforeafter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero-features {
        margin: 1.5rem 0;
    }

    .hero-feature-item {
        font-size: 1rem;
    }

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

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

    .writers-grid {
        grid-template-columns: 1fr;
    }

    .quality-step {
        flex-direction: column;
        gap: 1rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }
}

/* Interview Writing Page Styles */
.interview-intro {
    padding: 4rem 0;
    background-color: var(--text-light);
    text-align: center;
}

.interview-intro .intro-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-gray);
    max-width: 900px;
    margin: 2rem auto 0;
}

.success-footer {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: 16px;
}

.success-footer-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 2rem;
}

.interview-writer {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.writer-section-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    text-align: center;
    margin: 2rem 0 1rem;
}

.writer-section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.writer-profile-card {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.writer-profile-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--text-light);
}

.writer-profile-title {
    font-size: 1.2rem;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.writer-name {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

.writer-name-en {
    font-size: 1.2rem;
    font-weight: normal;
    color: var(--text-gray);
    display: block;
    margin-top: 0.5rem;
}

.writer-profile-content {
    margin-top: 2rem;
}

.writer-profile-label {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.writer-profile-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 2;
}

.writer-footer {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 3rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .writer-profile-card {
        padding: 2rem 1.5rem;
    }

    .writer-name {
        font-size: 1.5rem;
    }

    .success-footer {
        padding: 2rem 1.5rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }
}

/* LLMO Consulting Page Styles */
.llmo-intro {
    padding: 4rem 0;
    background-color: var(--text-light);
    text-align: center;
}

.llmo-eat {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.eat-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
    margin: 2rem 0 3rem;
}

.eat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.eat-item {
    background-color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.eat-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.eat-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.8;
}

.eat-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.eat-cta {
    margin-top: 4rem;
    text-align: center;
}

.llmo-pricing {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
    margin: 2rem 0 3rem;
}

.llmo-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.llmo-pricing-card {
    background-color: var(--light-gray);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.llmo-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.llmo-pricing-header {
    background: linear-gradient(135deg, var(--primary-gray), var(--secondary-gray));
    color: var(--text-light);
    padding: 2.5rem;
    text-align: center;
}

.llmo-plan-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.llmo-pricing-value {
    margin-top: 1rem;
}

.llmo-price {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.llmo-pricing-content {
    padding: 2.5rem;
}

.result-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--light-gray);
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .eat-grid {
        grid-template-columns: 1fr;
    }

    .llmo-pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .eat-item {
        padding: 2rem 1.5rem;
    }

    .eat-title {
        font-size: 1.5rem;
    }

    .llmo-pricing-header {
        padding: 2rem 1.5rem;
    }

    .llmo-plan-title {
        font-size: 1.5rem;
    }

    .llmo-price {
        font-size: 2rem;
    }

    .llmo-pricing-content {
        padding: 2rem 1.5rem;
    }
}

/* Analysis Consulting Page Styles */
.analysis-intro {
    padding: 4rem 0;
    background-color: var(--text-light);
    text-align: center;
}

.analysis-intro .intro-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-gray);
    max-width: 900px;
    margin: 2rem auto 0;
}

.analysis-initial-plan {
    margin-top: 3rem;
    text-align: center;
}

.initial-plan-card {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-dark);
}

.initial-plan-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.initial-plan-price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.initial-plan-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .initial-plan-card {
        padding: 2rem 1.5rem;
    }

    .initial-plan-title {
        font-size: 1.5rem;
    }

    .initial-plan-price {
        font-size: 2.5rem;
    }
}

/* Website Analysis Service Page Styles */
.website-analysis-process {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.analysis-process-timeline {
    margin: 3rem 0;
}

.analysis-phase {
    background-color: var(--text-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.analysis-phase.rich-plan {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1), rgba(243, 156, 18, 0.05));
    border: 2px solid var(--primary-yellow);
}

.phase-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.rich-plan .phase-badge {
    background-color: var(--primary-gray);
    color: var(--text-light);
}

.phase-steps {
    margin-top: 2rem;
}

.phase-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.phase-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.analysis-reports {
    margin: 4rem 0;
    text-align: center;
}

.reports-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 2rem;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.report-item {
    background-color: var(--text-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: var(--primary-gray);
    border-left: 4px solid var(--primary-yellow);
}

.analysis-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
}

.analysis-stats .stat-item {
    background-color: var(--text-light);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.analysis-stats .stat-number {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.analysis-stats .stat-label {
    font-size: 1.2rem;
    color: var(--primary-gray);
    font-weight: 600;
}

@media (max-width: 992px) {
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .analysis-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .analysis-phase {
        padding: 2rem 1.5rem;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .analysis-stats .stat-number {
        font-size: 3rem;
    }
}

/* Content Marketing Support Page Styles */
.content-marketing-curriculum {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.curriculum-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    text-align: center;
    margin: 2rem 0 1rem;
}

.curriculum-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 3rem;
}

.curriculum-months {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.curriculum-month {
    background-color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.month-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-yellow);
}

.month-weeks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.week-item {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-yellow);
}

.week-number {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.week-content {
    font-size: 1rem;
    color: var(--primary-gray);
    line-height: 1.8;
}

.curriculum-schedule {
    margin: 4rem 0;
}

.schedule-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    text-align: center;
    margin-bottom: 2rem;
}

.schedule-table-wrapper {
    overflow-x: auto;
    background-color: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary-gray), var(--secondary-gray));
    color: var(--text-light);
}

.schedule-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-table th:last-child {
    border-right: none;
}

.schedule-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
    border-right: 1px solid var(--light-gray);
    color: var(--text-gray);
}

.schedule-table td:last-child {
    border-right: none;
}

.curriculum-manuals {
    margin: 4rem 0;
    text-align: center;
}

.manuals-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 2rem;
}

.manuals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.manual-item {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    color: var(--primary-gray);
    border-left: 4px solid var(--primary-yellow);
}

.curriculum-footer {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background-color: var(--text-light);
    border-radius: 16px;
}

.curriculum-footer-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 2rem;
}

.content-marketing-pricing {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.content-pricing-card {
    background-color: var(--light-gray);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 3rem auto;
}

.content-pricing-header {
    background: linear-gradient(135deg, var(--primary-gray), var(--secondary-gray));
    color: var(--text-light);
    padding: 2.5rem;
    text-align: center;
}

.content-plan-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.content-pricing-value {
    margin-top: 1rem;
}

.content-price {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.content-pricing-content {
    padding: 2.5rem;
}

.content-pricing-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--text-light);
    border-radius: 12px;
}

.pricing-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 1rem;
    color: var(--text-gray);
}

.detail-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gray);
}

.pricing-benefit {
    font-size: 1.1rem;
    color: var(--primary-gray);
    font-weight: 500;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(241, 196, 15, 0.1);
    border-radius: 12px;
}

@media (max-width: 992px) {
    .curriculum-months {
        grid-template-columns: 1fr;
    }

    .manuals-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .curriculum-month {
        padding: 2rem 1.5rem;
    }

    .schedule-table {
        font-size: 0.9rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 1rem 0.5rem;
    }

    .content-pricing-header {
        padding: 2rem 1.5rem;
    }

    .content-price {
        font-size: 2.5rem;
    }

    .content-pricing-content {
        padding: 2rem 1.5rem;
    }
}

/* Global Owned Media Page Styles */
.plan-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background-color: rgba(241, 196, 15, 0.1);
    border-radius: 8px;
}

.global-construction-fee {
    margin-top: 3rem;
    text-align: center;
}

.construction-fee-card {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-dark);
}

.construction-fee-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.construction-fee-price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

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

.construction-fee-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.construction-fee-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .construction-fee-card {
        padding: 2rem 1.5rem;
    }

    .construction-fee-title {
        font-size: 1.5rem;
    }

    .construction-fee-price {
        font-size: 2.5rem;
    }
}

/* Why Choose Page Styles */
.why-choose-hero {
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--secondary-gray) 100%);
    color: var(--text-light);
    text-align: center;
}

.why-choose-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.why-choose-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.why-choose-intro-section {
    padding: 4rem 0;
    background-color: var(--text-light);
}

.why-choose-intro-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.why-choose-cta-top,
.why-choose-cta-middle,
.why-choose-cta-bottom {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: 16px;
    margin-top: 3rem;
}

.why-choose-main-reasons {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.main-reasons-list {
    margin: 3rem 0;
}

.main-reason-item {
    background-color: var(--text-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.reason-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-yellow);
    min-width: 60px;
    line-height: 1;
}

.reason-content-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.reason-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--light-gray);
}

.reason-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reason-text-content {
    flex: 1;
}

.reason-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.reason-subtitle {
    font-size: 1.2rem;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.reason-description {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-gray);
}

.why-choose-other-reasons {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.other-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.other-reason-item {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.other-reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.other-reason-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background-color: var(--text-light);
}

.other-reason-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.other-reason-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.other-reason-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.other-reason-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: left;
}

@media (max-width: 992px) {
    .reason-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reason-image {
        height: 200px;
    }

    .other-reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-choose-hero {
        padding: 6rem 0 3rem;
    }

    .why-choose-hero-title {
        font-size: 2rem;
    }

    .why-choose-hero-subtitle {
        font-size: 1.2rem;
    }

    .main-reason-item {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .reason-number {
        font-size: 2.5rem;
        min-width: 50px;
    }

    .reason-title {
        font-size: 1.5rem;
    }

    .reason-subtitle {
        font-size: 1.1rem;
    }

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

    .other-reason-item {
        padding: 2rem 1.5rem;
    }

    .other-reason-image {
        height: 150px;
    }
}

/* Recruit Page Styles */
.recruit-hero {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background-image: url('./images/recruit-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.recruit-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.7), rgba(255, 105, 180, 0.1));
    z-index: 1;
}

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

.recruit-hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.recruit-hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.recruit-hero-tagline {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.recruit-section-one {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.section-one-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-one-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-one-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-one-text-wrapper {
    padding: 2rem 0;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.section-one-text {
    text-align: left;
}

.recruit-section-two {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.section-two-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.section-two-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-two-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-two-text-wrapper {
    padding: 2rem 0;
}

.ceo-message-text {
    padding: 2rem 0;
}

.ceo-message-quote {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ceo-message-text-content {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.ceo-message-signature {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gray);
    margin-top: 2rem;
    text-align: right;
    line-height: 1.8;
}

.recruit-positions {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.positions-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.positions-grid-all {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.positions-grid-all .position-card-with-image {
    grid-column: span 1;
}

.position-card-with-image {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.position-card-with-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.position-image-small {
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.position-img-small {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.position-card {
    background-color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.position-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.position-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.position-sub-positions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.sub-position {
    margin-bottom: 2rem;
}

.sub-position:last-child {
    margin-bottom: 0;
}

.sub-position-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.sub-position-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.position-link {
    display: inline-block;
    color: var(--primary-yellow);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.position-link:hover {
    color: var(--secondary-yellow);
}

.recruit-section-four {
    position: relative;
    padding: 6rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.section-four-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/How to work in a simple way.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.section-four-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.7), rgba(255, 105, 180, 0.7));

    z-index: 2;
}

.section-four-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    text-align: center;
}

.section-four-content .section-title {
    color: var(--text-light);
}

.section-four-content .work-style-description {
    color: var(--text-light);
    font-size: 1.2rem;
}

.section-four-content .work-style-list li {
    color: var(--text-light);
}

.section-four-content .work-style-list li::before {
    color: var(--primary-yellow);
}

.section-four-content .work-style-note {
    color: var(--text-light);
}

.work-style-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.work-style-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.work-style-list li {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-gray);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.work-style-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.3rem;
}

.work-style-note {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
}

.recruit-benefits {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.benefits-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    background-color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    color: #ff1493;
}

.benefit-icon i {
    display: inline-block;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.recruit-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-gray), var(--secondary-gray));
    color: var(--text-light);
    text-align: center;
}

.recruit-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.recruit-cta .cta-text {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.recruit-cta .cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.recruit-cta .cta-button:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .section-one-content,
    .section-two-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-one-image,
    .section-two-image {
        order: -1;
    }

    .section-one-text-wrapper,
    .section-two-text-wrapper {
        padding: 1rem 0;
    }

    .positions-grid-all {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recruit-hero {
        padding: 6rem 0 3rem;
        min-height: 300px;
    }

    .recruit-hero-title {
        font-size: 2rem;
    }

    .recruit-hero-subtitle {
        font-size: 1.1rem;
    }

    .recruit-section-one,
    .recruit-section-two {
        padding: 4rem 0;
    }

    .section-one-content,
    .section-two-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-one-image,
    .section-two-image {
        height: 300px;
        order: -1;
    }

    .section-one-text-wrapper,
    .section-two-text-wrapper {
        padding: 1rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .ceo-message-quote {
        font-size: 1.1rem;
    }

    .ceo-message-text-content {
        font-size: 1rem;
    }

    .recruit-positions {
        padding: 4rem 0;
    }

    .positions-grid-all {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .position-card,
    .position-card-with-image {
        padding: 2rem 1.5rem;
    }

    .position-image-small {
        height: 200px;
    }

    .recruit-section-four {
        padding: 4rem 0;
    }

    .section-four-content {
        padding: 2rem 1.5rem;
    }

    .work-style-list {
        padding-left: 1.5rem;
    }

    .recruit-benefits {
        padding: 4rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-item {
        padding: 2rem 1.5rem;
    }

    .recruit-cta {
        padding: 4rem 0;
    }

    .recruit-cta-content {
        padding: 2rem 1.5rem;
    }
}

/* IT Articles Produced Page Styles */
.it-articles-hero {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background-image: url('./images/it-articles-produced-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.it-articles-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

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

.it-articles-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.it-articles-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.it-articles-policy {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.policy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.policy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.policy-text-wrapper {
    padding: 2rem 0;
}

.policy-text {
    text-align: left;
}

.policy-paragraph {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.policy-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.policy-feature {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.policy-feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.it-articles-writers {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.writers-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.writers-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--text-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.writers-table thead {
    background-color: var(--primary-gray);
    color: var(--text-light);
}

.writers-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.writers-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-gray);
    line-height: 1.8;
}

.writers-table tbody tr:last-child td {
    border-bottom: none;
}

.writers-table tbody tr:hover {
    background-color: rgba(241, 196, 15, 0.05);
}

.it-articles-cases {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.case-card {
    background-color: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.case-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-header {
    padding: 2rem 2rem 1rem;
}

.case-company {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

.case-media {
    font-size: 1rem;
    color: var(--text-gray);
}

.case-content {
    padding: 0 2rem 2rem;
}

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

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

.case-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

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

.it-articles-cta {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

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

.cta-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--primary-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Responsive Styles for IT Articles Page */
@media (max-width: 992px) {
    .policy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .policy-image {
        order: -1;
        height: 500px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .it-articles-hero {
        padding: 6rem 0 3rem;
        min-height: 300px;
    }

    .it-articles-hero-title {
        font-size: 2.5rem;
    }

    .it-articles-hero-subtitle {
        font-size: 1.2rem;
    }

    .it-articles-policy,
    .it-articles-writers,
    .it-articles-cases,
    .it-articles-cta {
        padding: 4rem 0;
    }

    .policy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .policy-image {
        height: 400px;
        order: -1;
    }

    .policy-text-wrapper {
        padding: 1rem 0;
    }

    .policy-paragraph {
        font-size: 1rem;
    }

    .writers-table-wrapper {
        margin-top: 2rem;
    }

    .writers-table th,
    .writers-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-header,
    .case-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .case-company {
        font-size: 1.3rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }

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

/* Finance Articles Produced Page Styles */
.finance-articles-hero {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background-image: url('./images/finance-articles-produced-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.finance-articles-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

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

.finance-articles-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.finance-articles-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.finance-articles-policy {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.finance-articles-writers {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.finance-articles-cases {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.finance-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.finance-articles-cta {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

/* Responsive Styles for Finance Articles Page */
@media (max-width: 992px) {
    .finance-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .finance-articles-hero {
        padding: 6rem 0 3rem;
        min-height: 300px;
    }

    .finance-articles-hero-title {
        font-size: 2.5rem;
    }

    .finance-articles-hero-subtitle {
        font-size: 1.2rem;
    }

    .finance-articles-policy,
    .finance-articles-writers,
    .finance-articles-cases,
    .finance-articles-cta {
        padding: 4rem 0;
    }

    .finance-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Medical Articles Produced Page Styles */
.medical-articles-hero {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background-image: url('./images/medical-articles-produced-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.medical-articles-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

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

.medical-articles-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.medical-articles-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.medical-articles-policy {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.medical-articles-writers {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.medical-articles-cases {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.medical-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Responsive Styles for Medical Articles Page */
@media (max-width: 992px) {
    .medical-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .medical-articles-hero {
        padding: 6rem 0 3rem;
        min-height: 300px;
    }

    .medical-articles-hero-title {
        font-size: 2.5rem;
    }

    .medical-articles-hero-subtitle {
        font-size: 1.2rem;
    }

    .medical-articles-policy,
    .medical-articles-writers,
    .medical-articles-cases {
        padding: 4rem 0;
    }

    .medical-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Real Estate Articles Produced Page Styles */
.real-estate-articles-hero {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background-image: url('./images/real-estate-articles-produced-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.real-estate-articles-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

.real-estate-articles-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.real-estate-articles-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.real-estate-articles-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.real-estate-articles-policy {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.real-estate-articles-writers {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.real-estate-articles-cases {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.real-estate-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Responsive Styles for Real Estate Articles Page */
@media (max-width: 992px) {
    .real-estate-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .real-estate-articles-hero {
        padding: 6rem 0 3rem;
        min-height: 300px;
    }

    .real-estate-articles-hero-title {
        font-size: 2.5rem;
    }

    .real-estate-articles-hero-subtitle {
        font-size: 1.2rem;
    }

    .real-estate-articles-policy,
    .real-estate-articles-writers,
    .real-estate-articles-cases {
        padding: 4rem 0;
    }

    .real-estate-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Education Articles Produced Page Styles */
.education-articles-hero {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background-image: url('./images/education-articles-produce-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.education-articles-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

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

.education-articles-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.education-articles-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.education-articles-policy {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.education-articles-writers {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.education-articles-cases {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.education-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Responsive Styles for Education Articles Page */
@media (max-width: 992px) {
    .education-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .education-articles-hero {
        padding: 6rem 0 3rem;
        min-height: 300px;
    }

    .education-articles-hero-title {
        font-size: 2.5rem;
    }

    .education-articles-hero-subtitle {
        font-size: 1.2rem;
    }

    .education-articles-policy,
    .education-articles-writers,
    .education-articles-cases {
        padding: 4rem 0;
    }

    .education-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Legal Articles Produced Page Styles */
.legal-articles-hero {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background-image: url('./images/legal-articles-produced-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.legal-articles-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

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

.legal-articles-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.legal-articles-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.legal-articles-policy {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.legal-articles-writers {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.legal-articles-cases {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.legal-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Responsive Styles for Legal Articles Page */
@media (max-width: 992px) {
    .legal-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .legal-articles-hero {
        padding: 6rem 0 3rem;
        min-height: 300px;
    }

    .legal-articles-hero-title {
        font-size: 2.5rem;
    }

    .legal-articles-hero-subtitle {
        font-size: 1.2rem;
    }

    .legal-articles-policy,
    .legal-articles-writers,
    .legal-articles-cases {
        padding: 4rem 0;
    }

    .legal-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Results Page Styles */
.results-page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background-image: url('./images/results-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.results-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

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

.results-page-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.results-page-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
}

.results-customer-cases {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.customer-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.customer-case-card {
    background-color: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.customer-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.customer-case-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.customer-case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-case-header {
    padding: 2rem 2rem 1rem;
}

.customer-case-company {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

.customer-case-media {
    font-size: 1rem;
    color: var(--text-gray);
}

.customer-case-content {
    padding: 0 2rem;
    flex-grow: 1;
}

.customer-case-item {
    margin-bottom: 1.5rem;
}

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

.customer-case-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

.customer-case-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

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

.customer-case-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.customer-case-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.customer-case-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--light-gray);
}

.customer-case-link {
    display: inline-block;
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.customer-case-link:hover {
    color: var(--secondary-yellow);
    text-decoration: underline;
}

.results-by-category {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.results-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.result-category-card {
    background-color: var(--text-light);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}

.result-category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-category-icon svg {
    width: 100%;
    height: 100%;
}

.result-category-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.result-category-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.results-page-cta {
    padding: 6rem 0;
    background-color: var(--text-light);
}

/* Responsive Styles for Results Page */
@media (max-width: 992px) {
    .customer-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .results-page-hero {
        padding: 6rem 0 3rem;
        min-height: 300px;
    }

    .results-page-hero-title {
        font-size: 2.5rem;
    }

    .results-page-hero-subtitle {
        font-size: 1.1rem;
    }

    .results-customer-cases,
    .results-by-category,
    .results-page-cta {
        padding: 4rem 0;
    }

    .customer-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .customer-case-header,
    .customer-case-content,
    .customer-case-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .customer-case-company {
        font-size: 1.3rem;
    }

    .results-category-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .result-category-card {
        padding: 2rem 1.5rem;
    }
}

/* Services Page Styles */
.services-page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background-image: url('./images/services-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.services-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

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

.services-page-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.services-page-hero-badge {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.services-badge-text {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-page-hero-subtitle {
    font-size: 1.3rem;
    line-height: 2;
    opacity: 0.95;
}

.services-page-grid {
    padding: 6rem 0;
    background-color: var(--text-light);
}

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

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-large {
    background-color: var(--text-light);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-link:hover .service-card-large {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.service-card-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.services-page-cta {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

/* Responsive Styles for Services Page */
@media (max-width: 992px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card-large {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .services-page-hero {
        padding: 6rem 0 3rem;
        min-height: 400px;
    }

    .services-page-hero-title {
        font-size: 2.5rem;
    }

    .services-page-hero-badge {
        gap: 0.5rem;
    }

    .services-badge-text {
        font-size: 1.5rem;
    }

    .services-page-hero-subtitle {
        font-size: 1.1rem;
    }

    .services-page-grid,
    .services-page-cta {
        padding: 4rem 0;
    }

    .service-card-large {
        padding: 2rem 1.5rem;
    }

    .service-card-title {
        font-size: 1.5rem;
    }

    .service-card-description {
        font-size: 1rem;
    }
}

/* Article/Column Page Styles */
.article-wrapper {
    padding-top: 100px;
    background: #ffffff;
    min-height: 100vh;
}

.article-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.article-title {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--primary-gray);
}

.article-featured-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    background: #ffffff;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-yellow);
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin: 2.5rem 0 1rem;
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin: 2rem 0 1rem;
}

.article-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-content table th,
.article-content table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.article-content table th {
    background-color: var(--primary-gray);
    color: var(--text-light);
    font-weight: bold;
}

.article-content table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.article-cta-box {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.article-cta-box a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-gray);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.article-cta-box a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.article-author {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.article-author-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.article-author-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.article-author-info p {
    margin: 0;
    color: var(--text-gray);
}

.article-toc {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.article-toc h3 {
    margin-top: 0;
}

.article-toc ul {
    list-style: none;
    padding-left: 0;
}

.article-toc li {
    margin-bottom: 0.5rem;
}

.article-toc a {
    color: var(--primary-gray);
    text-decoration: none;
}

.article-toc a:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

/* Article Sidebar Styles */
.article-sidebar-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-yellow);
}

.article-sidebar-item {
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-sidebar-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-sidebar-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.article-sidebar-item-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.article-sidebar-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-sidebar-item:hover .article-sidebar-item-image img {
    transform: scale(1.05);
}

.article-sidebar-item-content {
    padding: 1rem;
}

.article-sidebar-item-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--primary-gray);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 968px) {
    .article-main-container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .article-wrapper {
        padding-top: 80px;
    }

    .article-main-container {
        padding: 2rem 20px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }
}

