/* 基本スタイル */
:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --background-color: #F5F5F7;
    --tile-background: #FFFFFF;
    --text-color: #1D1D1F;
    --text-secondary: #86868B;
    --border-color: #D2D2D7;
    --hover-color: #0071E3;
    --header-background: rgba(255, 255, 255, 0.8);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
}

/* ヘッダー */
header {
    background-color: var(--header-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* ホームリンク */
.home-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.search-container input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.1);
}

.search-container button {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-container button:hover {
    color: var(--primary-color);
}

/* メインコンテンツ */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

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

.category-tile {
    background-color: var(--tile-background);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

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

.category-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.category-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.calculator-list {
    list-style: none;
}

.calculator-list li {
    margin-bottom: 0.8rem;
}

.calculator-list a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* 検索機能 */
#search-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--tile-background);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

#search-results h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

#search-results-container {
    margin-bottom: 1rem;
}

.search-result-item {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: var(--background-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-result-item a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.search-result-item a:hover {
    color: var(--primary-color);
}

.search-result-category {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.highlight {
    background-color: rgba(255, 235, 59, 0.3);
    border-radius: 2px;
    padding: 0.1rem 0.2rem;
}

#clear-search {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

#clear-search:hover {
    background-color: var(--hover-color);
}

.hidden {
    display: none !important;
}

.search-active .category-tile {
    opacity: 0.3;
}

.search-active .category-tile.has-matches {
    opacity: 1;
}

/* フッター */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 3rem;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .search-container input {
        width: 100%;
    }

    main {
        padding: 0 1rem;
        margin: 1rem auto;
    }

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

    .category-tile {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .category-header h2 {
        font-size: 1.1rem;
    }

    .calculator-list a {
        font-size: 0.9rem;
    }
}

/* パンくずリスト */
.breadcrumb {
    background-color: var(--background-color);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin: 0 0.5rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.8rem 1rem;
    }
    
    .breadcrumb ol {
        font-size: 0.9rem;
    }
}

/* 関連計算機セクション */
.related-calculators {
    background-color: var(--background-color);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.related-calculators .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.related-calculators h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2rem;
}

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

.related-item {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.related-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.related-item h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-item h3 a:hover {
    color: var(--hover-color);
}

.related-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.related-tags span {
    background-color: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.view-all-link {
    text-align: center;
}

@media (max-width: 768px) {
    .related-calculators {
        padding: 3rem 0;
    }
    
    .related-calculators .container {
        padding: 0 1rem;
    }
    
    .related-calculators h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .related-item {
        padding: 1.2rem;
    }
}

/* FAQ セクション */
.faq-section {
    background: #fafbfc;
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
}

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

.faq-preview {
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.faq-question {
    background: var(--primary-color);
    color: white;
    margin: 0;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::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;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question:hover {
    background: var(--hover-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.3);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-more-link {
    text-align: center;
}

.faq-more-link .primary-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-more-link .primary-button::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;
}

.faq-more-link .primary-button:hover::before {
    left: 100%;
}

.faq-more-link .primary-button:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.faq-more-link .primary-button::after {
    content: '→';
    transition: transform 0.3s ease;
}

.faq-more-link .primary-button:hover::after {
    transform: translateX(3px);
}

/* 健康情報・コンテンツマーケティングセクション */
.health-content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin: 40px 0;
}

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

.health-content-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.content-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.content-item h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.content-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.content-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.content-tags span {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 使い方ガイドセクション */
.usage-guide-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.usage-guide-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #007AFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* 健康トレンドセクション */
.health-trends-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.health-trends-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trend-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.trend-item h3 {
    color: #007AFF;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.trend-item p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.trend-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trend-tags span {
    background: linear-gradient(45deg, #007AFF, #0056b3);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 健康用語解説セクション */
.health-glossary-section {
    background: white;
    padding: 60px 0;
}

.health-glossary-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.glossary-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #007AFF;
    transition: transform 0.3s ease;
}

.glossary-item:hover {
    transform: translateX(5px);
    background: #e9ecef;
}

.glossary-item h3 {
    color: #007AFF;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.glossary-item p {
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* リソースセクション */
.resources-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.resources-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.resource-category h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.resource-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-category li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.resource-category li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007AFF;
    font-weight: bold;
}

.resource-category a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-category a:hover {
    color: #007AFF;
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .health-content-section {
        padding: 40px 0;
    }
    
    .health-content-section h2,
    .usage-guide-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-item {
        padding: 20px;
    }
    
    .content-item h3 {
        font-size: 1.2rem;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ブログセクション */
.blog-section {
    background-color: var(--tile-background);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.blog-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.blog-preview {
    margin-bottom: 2rem;
}

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-tag {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

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

.article-preview {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.article-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-preview .article-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-preview h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.article-preview h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-preview h3 a:hover {
    color: var(--primary-color);
}

.article-preview p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-preview .article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.article-preview .article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-more-link {
    text-align: center;
}

.primary-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 122, 255, 0.2);
}

@media (max-width: 768px) {
    .blog-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .blog-section h2 {
        font-size: 1.5rem;
    }

    .blog-categories {
        justify-content: flex-start;
    }

    .featured-articles {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .article-preview {
        padding: 1rem;
    }
}

/* ナビゲーションメニュー */
.main-nav {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

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

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
} 