/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4faf4;
}

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

/* ヘッダー */
.header {
    background-color: #e8f5e8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #666;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #666;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* メインコンテンツ */
main {
    margin-top: 80px;
}

/* ファーストビュー */
.hero {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4e8d4 100%);
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-catchcopy {
    font-size: 3rem;
    font-weight: 700;
    color: #666;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #666;
    color: white;
}

.btn-primary:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #666;
    border: 2px solid #666;
}

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

.btn-outline {
    background-color: transparent;
    color: #666;
    border: 2px solid #666;
}

.btn-outline:hover {
    background-color: #666;
    color: white;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* セクション共通 */
section {
    padding: 4rem 0;
}

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

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* 目玉コンテンツゾーン */
.featured-content-zone {
    background-color: #ffffff;
}

.featured-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-content-card {
    background-color: #ffffff;
    border: 1px solid #c7e0c7;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.featured-content-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.featured-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-content-card:hover .featured-content-image img {
    transform: scale(1.05);
}

.featured-content-body {
    padding: 1.5rem;
    text-align: center;
}

.featured-content-card h3 {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-content-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-content-cta {
    display: inline-block;
    background-color: #666;
    color: white;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.featured-content-cta:hover {
    background-color: #555;
}

/* 新着記事 */
.latest-articles {
    background-color: #f2f9f2;
}

.articles-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.article-card {
    flex: 0 0 300px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #333;
}

.article-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.slider-nav {
    text-align: center;
    margin-top: 2rem;
}

.slider-prev, .slider-next {
    background-color: #666;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background-color: #555;
}

/* 成功体験 */
.success-stories {
    background-color: white;
}

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

.success-stories-header .sub-copy {
    font-size: 1rem;
    color: #999;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.success-stories-header .catch-copy {
    font-size: 2.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.success-stories-header .description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.story-card {
    background-color: #f2f9f2;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: #666;
    opacity: 0.3;
}

.story-content {
    padding-top: 1rem;
}

.story-card h3 {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
}

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

.story-author {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 無料相談 */
.consultation {
    background: linear-gradient(135deg, #7ba05b 0%, #6b8f51 100%);
    color: white;
}

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

.consultation-header {
    margin-bottom: 3rem;
}

.consultation-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
}

.consultation-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    margin-bottom: 0;
}

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

.consultation-cta .btn-primary {
    background-color: white;
    color: #666;
}

.consultation-cta .btn-primary:hover {
    background-color: #e8f5e8;
}

/* 目的別コンテンツゾーン */
.purpose-content-zone {
    background-color: #f2f9f2;
}

.purpose-content-header {
    text-align: center;
    margin-bottom: 4rem;
}

.purpose-subtitle {
    font-size: 1rem;
    color: #999;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.purpose-title {
    font-size: 2.2rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.purpose-categories-section {
    margin-top: 3rem;
}

.purpose-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.section-decoration-left,
.section-decoration-right {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7ba05b, transparent);
    position: relative;
}

.section-decoration-left::after,
.section-decoration-right::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 6px;
    height: 6px;
    background: #7ba05b;
    border-radius: 50%;
}

.section-decoration-left::after {
    right: 0;
}

.section-decoration-right::after {
    left: 0;
}

.purpose-section-title {
    font-size: 1.8rem;
    color: #666;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.purpose-categories-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.purpose-category-card {
    background: transparent;
    border: none;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 240px;
    margin: 2rem 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.purpose-category-card:hover {
    transform: scale(1.02);
}

.purpose-category-card:nth-child(even) {
    flex-direction: row-reverse;
}

.purpose-category-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 160, 91, 0.3), transparent);
    z-index: 1;
}

.category-image-container {
    position: relative;
    width: 400px;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
    filter: saturate(0.9) brightness(1.1);
}

.purpose-category-card:hover .category-image {
    transform: scale(1.1);
    filter: saturate(1.1) brightness(1.2);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 160, 91, 0.1), rgba(107, 143, 81, 0.3));
    opacity: 1;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.purpose-category-card:hover .category-overlay {
    opacity: 0.7;
}

.category-content {
    padding: 3rem 3rem 3rem 4rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px 0;
    margin-left: -60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.purpose-category-card:nth-child(even) .category-content {
    margin-left: 0;
    margin-right: -60px;
    padding: 3rem 4rem 3rem 3rem;
}

.category-number {
    position: absolute;
    top: -15px;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7ba05b, #6b8f51);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(123, 160, 91, 0.4);
    z-index: 3;
}

.purpose-category-card:nth-child(even) .category-number {
    right: auto;
    left: 2rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 2rem 0;
}

.purpose-category-card h4 {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.03em;
    flex: 1;
    line-height: 1.2;
    background: linear-gradient(135deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #7ba05b, #6b8f51);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    min-width: 70px;
    box-shadow: 0 6px 20px rgba(123, 160, 91, 0.3);
    transform: translateY(-5px);
}

.count-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.count-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

.purpose-category-card p {
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
}

.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #7ba05b, #6b8f51);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(123, 160, 91, 0.3);
}

.category-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.category-cta:hover::before {
    left: 100%;
}

.category-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(123, 160, 91, 0.4);
}

.category-cta svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.category-cta:hover svg {
    transform: translateX(4px);
}

/* 新着記事・メルマガセクション */
.articles-newsletter-section {
    background-color: white;
    padding: 4rem 0;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.column-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.column-title {
    font-size: 1.6rem;
    color: #666;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.column-footer {
    text-align: center;
    margin-top: 2rem;
}

/* 新着記事 */
.articles-latest-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-latest-card {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-latest-card:hover {
    transform: translateX(5px);
}

.article-latest-card img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
}

.article-latest-content {
    padding: 1rem 1.5rem;
    flex: 1;
}

.article-date-small {
    color: #999;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-latest-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0.5rem 0;
    font-weight: 600;
    line-height: 1.3;
}

.article-latest-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* メルマガ */
.newsletter-content {
    background: linear-gradient(135deg, #f2f9f2, #e8f5e8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(123, 160, 91, 0.1);
}

.newsletter-description h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.newsletter-features {
    margin-bottom: 2.5rem;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1rem;
    color: #333;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(123, 160, 91, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #7ba05b;
}

.newsletter-btn {
    background: linear-gradient(135deg, #7ba05b, #6b8f51);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.newsletter-btn:hover {
    transform: translateY(-1px);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
    text-align: center;
}

/* 旅・イベントセクション */
.retreat-events-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4e8d4 100%);
    padding: 4rem 0;
}

/* リトリート */
.retreat-content {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.retreat-description h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.retreat-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.retreat-features {
    margin-bottom: 2.5rem;
}

.retreat-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.retreat-feature .feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.retreat-feature .feature-text h5 {
    font-size: 1rem;
    color: #333;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.retreat-feature .feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* イベント */
.events-content {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.events-description h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.events-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.events-list {
    margin-bottom: 2.5rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.event-item:hover {
    transform: translateX(5px);
}

.event-date-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #7ba05b, #6b8f51);
    color: white;
    padding: 0.8rem;
    border-radius: 10px;
    min-width: 60px;
    text-align: center;
}

.event-date-small .month {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
}

.event-date-small .day {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

.event-details h5 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.event-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* プライバシーポリシーページ */
.policy-page {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.policy-content h1 {
    font-size: 2.5rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8f5e8;
}

.policy-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-intro {
    font-size: 1.1rem;
    background-color: #f2f9f2;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #666;
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section li {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #f2f9f2;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

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

.policy-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #c7e0c7;
}

.back-link {
    margin-top: 2rem;
}

.logo a {
    text-decoration: none;
    color: #666;
}

.logo a:hover {
    color: #555;
}

/* フッター */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #666;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-catchcopy {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .success-stories-header .catch-copy {
        font-size: 1.8rem;
    }
    
    .featured-content-grid,
    .stories-grid,
    .two-column-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-grid {
        gap: 3rem;
    }
    
    .purpose-category-card {
        flex-direction: column !important;
        min-height: auto;
        text-align: center;
        margin: 1rem 0;
    }
    
    .purpose-category-card:nth-child(even) {
        flex-direction: column !important;
    }
    
    .purpose-category-card:hover,
    .purpose-category-card:nth-child(even):hover {
        transform: scale(1.02);
    }
    
    .category-image-container {
        width: 100%;
        height: 200px;
        border-radius: 20px;
    }
    
    .category-content {
        margin: -40px 20px 0 20px !important;
        padding: 3rem 2rem !important;
        text-align: center;
    }
    
    .category-number {
        top: -20px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .purpose-category-card h4 {
        font-size: 1.6rem;
    }
    
    .consultation-title {
        font-size: 2rem;
    }
    
    
    
    .slider-container {
        flex-wrap: wrap;
    }
    
    .article-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-catchcopy {
        font-size: 1.8rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .success-stories-header .catch-copy {
        font-size: 1.5rem;
    }
    
    .consultation-title {
        font-size: 1.8rem;
    }
    
    .purpose-title {
        font-size: 1.8rem;
    }
    
    .purpose-section-title {
        font-size: 1.5rem;
    }
    
    .purpose-section-header {
        gap: 1rem;
    }
    
    .section-decoration-left,
    .section-decoration-right {
        width: 40px;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
    }
    
    .btn-large {
        padding: 0.8rem 2rem;
    }
}