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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FFFFFF;
}

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

/* ヒーローセクション */
.hero {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    animation: subtleBackgroundMove 60s ease-in-out infinite;
    overflow: hidden;
}

/* 背景の安定した動き（サイズ変更なし） */
@keyframes subtleBackgroundMove {
    0% {
        background-position: center center;
    }
    25% {
        background-position: 50.2% 49.8%;
    }
    50% {
        background-position: 49.8% 50.2%;
    }
    75% {
        background-position: 50.1% 49.9%;
    }
    100% {
        background-position: center center;
    }
}

/* より繊細な光の変化効果 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.08) 75%,
        rgba(255, 255, 255, 0.02) 100%
    );
    animation: subtleLightShift 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes subtleLightShift {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0) translateY(0);
    }
    25% {
        opacity: 0.5;
        transform: translateX(8px) translateY(-2px);
    }
    50% {
        opacity: 0.4;
        transform: translateX(-6px) translateY(3px);
    }
    75% {
        opacity: 0.6;
        transform: translateX(4px) translateY(1px);
    }
}

/* 微細なパーティクル効果 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.08), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.12), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.06), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: subtleParticleFloat 25s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes subtleParticleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-3px) translateX(2px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

.hero-content {
    padding: 100px 0px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 20px;
    top: 0;
    position: absolute;
}

/* ファーストビュー内ハンバーガーメニュー */
.hero-hamburger {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

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

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

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

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

.hero h1 {
    font-size: 3rem;
/*    font-weight: 300; */
    line-height: 1.1;
    letter-spacing: -1.28px;
    margin-bottom: 35px;
    font-weight: bold;
    color: #1A1A1A;
}

.hero p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #666666;
}

/* ヒーローテキストアニメーション */
.hero-title, .hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.hero-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* 上品なグラデーション効果 */
.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 1.5s ease-in-out;
}

.hero-title.animate-in::after {
    transform: translateX(100%);
}

/* より洗練された文字アニメーション */
.hero-title {
    background: linear-gradient(45deg, #1A1A1A, #333333);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* タイプライター効果用のスタイル */
.typewriter {
    overflow: hidden;
    border-right: 2px solid transparent;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #1A1A1A; }
}

/* 文字単位のアニメーション */
.char-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charFadeIn 0.6s ease-out forwards;
}

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

/* セクション共通 */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 40px;
/*    font-weight: 300; */
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1A1A1A;
}

/* 動画セクションの見出しは白文字 */
.video-section .section-title {
    color: white;
}

/* ワークスタイルセクションの見出しは白文字 */
.workstyle-section .section-title {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
}

/* 動画セクション */
.video-section {
    background-color: #1A1A1A;
    color: white;
    text-align: center;
}

.video-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.78%; /* 9:16 アスペクト比（縦型） */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-thumbnail {
    width: 100%;
    height: 0;
    padding-bottom: 177.78%; /* 9:16 アスペクト比（縦型） */
    background: linear-gradient(124deg, #333333 0%, #555555 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: '';
    width: 0;

    height: 0;
    border-left: 20px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
}

/* リニューアルセクション */
.renewal-section {
    background-color: #FFFFFF;
}

.renewal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.renewal-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.renewal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.renewal-number {
/*    font-size: 14px;
    font-weight: 500; */
    font-size: 24px;
    width: 180px;
    border-bottom: solid;
    color: #666666;
    letter-spacing: 2px;
}

.renewal-title {
    font-size: 28px;
/*    font-weight: 300; */
    line-height: 1.3;
    color: #1A1A1A;
    font-weight: bold;
}

.renewal-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
}

.improvement-box {
    background: #F8F8F8;
    padding: 20px;
/*    border-radius: 12px; */
    border-radius: 8px;
    border-left: 4px solid #333333;
}

.improvement-title {
/*    font-size: 14px;
    font-weight: 500; */
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
}

.improvement-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #666666;
}

.renewal-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.renewal-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 基本機能セクション */
.features-section {
    background-color: #FAFAFA;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

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

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

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

.feature-content {
    padding: 30px;
}

.feature-title {
    font-size: 20px;
/*    font-weight: 500;  */
    font-weight: bold;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
}

/* 品質保証セクション */
.quality-section {
    background-color: #FAFAFA;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.quality-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.quality-card.japan {
    background-image: url('../images/japanese-design.jpg');
}

.quality-card.warranty {
    background-image: url('../images/guarantee.jpg');
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.65);
    z-index: 1;
}

.quality-content {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quality-title {
    font-size: 28.8px;
/*    font-weight: 300; */
    font-weight: bold;
    color: #FFCC00;
    margin-bottom: 20px;
}

.quality-description {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

.quality-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* カラーバリエーションセクション */
.colors-section {
    background-color: #FAFAFA;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.color-image {
    width: 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 40px;
}

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

.color-name {
    font-size: 20px;
/*    font-weight: 500; */
    font-weight: bold;
    color: #1A1A1A;
}

/* 製品仕様セクション */
.specs-section {
    background-color: #FFFFFF;
}

.specs-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.spec-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spec-tab:hover {
    transform: translateY(-5px);
}

.spec-tab img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-tab-label {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
}

.specs-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.spec-row {
    display: flex;
    border-bottom: 1px solid #E0E0E0;
}

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

.spec-label {
    width: 200px;
    display: flex;
    align-items: center;
    padding: 20px;
    background: #F8F8F8;
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
}

.spec-value {
    flex: 1;
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}
.spec-image {
    max-width: 400px;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
}

.spec-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* ワークスタイルセクション */
.workstyle-section {
    background-color: #1A1A1A;
    color: white;
}

.workstyle-content {
    text-align: center;
}

.workstyle-title {
    font-size: 40px;
/*    font-weight: 300; */
    font-weight: bold;
    margin-bottom: 20px;
}

.workstyle-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 60px;
    opacity: 0.8;
}

.workstyle-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
}

.workstyle-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* フッターセクション */
.footer-content {
    text-align: center;
}
.footer-section {
    background-color: #1A1A1A;
    color: white;
}
.footer-description {
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 0.8;
}
/* coming Soonセクション */
.coming-content {
    text-align: center;
}

.coming-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
}

.coming-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* オンラインショップセクション */
.shop-section {
    background-color: #FAFAFA;
}

.shop-content {
    text-align: center;
    margin-bottom: 60px;
}
.shop-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666666;
}
.shop-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shop-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.shop-image:hover {
    transform: translateY(-5px);
}

.shop-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ナビゲーション */
.nav {
    background: white;
    border-bottom: 1px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 40px;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

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

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

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

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

.nav-link {
    color: #666666;
    padding: 9px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15.2px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #333333;
    color: white;
}

/* 固定購入ボタン */
.fixed-purchase-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fixed-purchase-button.show {
    transform: translateY(0);
}

.purchase-btn {
    display: block;
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s ease;
}

.purchase-btn:hover {
    background: #555;
}

/* レスポンシブデザイン */
/* 大画面でのアニメーション最適化 */
@media (min-width: 1201px) and (max-width: 1800px) {
    .hero {
        animation: subtleBackgroundMove 120s ease-in-out infinite; /* より遅いアニメーション */
    }
    
    .hero::before {
        animation: subtleLightShift 30s ease-in-out infinite; /* より遅い光の変化 */
    }
    
    .hero::after {
        animation: subtleParticleFloat 40s ease-in-out infinite; /* より遅いパーティクル */
    }
}

@media (max-width: 1200px) {
    .hero {
        background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/hero-background-sp.jpg');
        background-size: cover;
        background-position: center;
        animation: none; /* TABではアニメーションを無効化 */
    }
    
    .hero::before {
        animation: none; /* 光の変化効果を無効化 */
    }
    
    .hero::after {
        animation: none; /* パーティクル効果を無効化 */
    }
    
    .container {
        padding: 0 40px;
    }
    
    .renewal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        margin-bottom: 60px;
    }
    
    .renewal-item {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .renewal-image {
        width: 100%;
        max-width: 500px;
        order: 1;
    }
    
    .renewal-content {
        order: 2;
    }
    
    .renewal-number {
        order: 1;
    }
    
    .renewal-title {
        order: 2;
    }
    
    .renewal-description {
        order: 3;
    }
    
    .improvement-box {
        order: 4;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .colors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .color-image {
        width: 280px;
        height: 280px;
    }
    
    .specs-tabs {
        flex-direction: column;
        gap: 20px;
    }
    
    .spec-tab {
        height: 250px;
    }
    
    .shop-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/hero-background-sp.jpg');
        background-size: cover;
        background-position: center;
        animation: none; /* スマホではアニメーションを無効化 */
    }
    
    .hero::before {
        animation: none; /* 光の変化効果を無効化 */
    }
    
    .hero::after {
        animation: none; /* パーティクル効果を無効化 */
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .renewal-title {
        font-size: 24px;
    }
    
    .renewal-grid {
        gap: 60px;
        margin-bottom: 50px;
    }
    
    .renewal-item {
        gap: 25px;
    }
    
    /* ファーストビュー内ハンバーガーメニュー表示 */
    .hero-hamburger {
        display: flex;
    }
    
    /* 固定購入ボタンを表示 */
    .fixed-purchase-button {
        display: block;
    }
    
    /* 通常のナビゲーションを非表示 */
    .nav {
        display: none;
    }
    
    /* メニューが開いている時はナビゲーションを表示 */
    .nav.menu-open {
        display: block;
    }
    
    /* ナビゲーションを追従するように変更 */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 20px;
        width: 80%;
        text-align: center;
        border-radius: 10px;
    }
    
    .spec-row {
        flex-direction: column;
    }
    
    .spec-label {
        width: 100%;
    }
    
    .shop-images {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 530px) {
    .spec-image {
    margin-left: 20px;
    margin-right: 20px;
    }
}
@media (max-width: 480px) {
    .hero {
        animation: none; /* アニメーションを無効化 */
    }
    
    .hero::before {
        animation: none; /* 光の変化効果を無効化 */
    }
    
    .hero::after {
        animation: none; /* パーティクル効果を無効化 */
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 100px 0px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .renewal-grid {
        gap: 50px;
        margin-bottom: 40px;
        grid-template-columns: 1fr;
    }
    
    .renewal-item {
        gap: 20px;
    }
    
    .renewal-title {
        font-size: 20px;
    }
    
    .renewal-description {
        font-size: 16px;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}
