/**
 * 使用指南页面样式 - guide/style.css
 * 文件位置: assets/css/guide/style.css
 * 功能: 使用指南页面的样式定义
 */

/* 强制样式重置和背景设置 */
* {
    box-sizing: border-box;
}

html {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 100vh !important;
    height: 100% !important;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* 全局样式优化 */
body {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #455a64 50%, #546e7a 75%, #607d8b 100%) !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    scroll-behavior: smooth;
    color: #2d3748;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    padding: 0 !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(149, 165, 166, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="parking-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><rect width="40" height="40" fill="none"/><rect x="5" y="5" width="30" height="15" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5" rx="2"/><text x="20" y="15" text-anchor="middle" font-family="Arial" font-size="8" fill="rgba(255,255,255,0.03)">P</text><circle cx="10" cy="30" r="2" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.3"/><circle cx="30" cy="30" r="2" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.3"/></pattern></defs><rect width="200" height="200" fill="url(%23parking-pattern)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

/* 背景装饰元素 */
.floating-car {
    position: fixed;
    top: 15%;
    right: 15%;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.parking-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.parking-icons::before {
    content: '🅿️';
    position: absolute;
    top: 25%;
    left: 5%;
    font-size: 1.5rem;
    opacity: 0.08;
    animation: float 12s ease-in-out infinite;
}

.parking-icons::after {
    content: '🚙';
    position: absolute;
    bottom: 30%;
    right: 8%;
    font-size: 1.8rem;
    opacity: 0.08;
    animation: float 10s ease-in-out infinite reverse;
}

.road-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.02) 49%, rgba(255,255,255,0.02) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(255,255,255,0.015) 49%, rgba(255,255,255,0.015) 51%, transparent 52%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: -2;
    opacity: 0.3;
}

.parking-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.parking-decorations::before {
    content: '🚕';
    position: absolute;
    top: 60%;
    left: 12%;
    font-size: 1.2rem;
    opacity: 0.06;
    animation: float 15s ease-in-out infinite;
}

.parking-decorations::after {
    content: '🚐';
    position: absolute;
    top: 40%;
    right: 25%;
    font-size: 1.4rem;
    opacity: 0.07;
    animation: float 9s ease-in-out infinite reverse;
}

.moving-cars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.moving-cars::before {
    content: '🚗';
    position: absolute;
    top: 70%;
    font-size: 1.5rem;
    animation: drive 25s linear infinite;
    animation-delay: 0s;
}

.moving-cars::after {
    content: '🚙';
    position: absolute;
    top: 35%;
    font-size: 1.3rem;
    animation: driveReverse 30s linear infinite;
    animation-delay: 10s;
}

/* 英雄区域样式 */
.hero-text-wrap {
    width: 100%;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(247,250,252,0.95) 50%, rgba(237,242,247,0.95) 100%),
        radial-gradient(circle at 20% 20%, rgba(52,152,219,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46,125,50,0.1) 0%, transparent 50%);
    text-align: center;
    padding: 80px 10px 60px 10px;
    margin: 20px auto;
    max-width: 1050px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(52,152,219,0.15),
        0 8px 32px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border-radius: 24px;
    border: 1px solid rgba(52,152,219,0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    cursor: default;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 80px rgba(52,152,219,0.2),
        0 12px 40px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(52,152,219,0.3);
}

.hero-text-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(52,152,219,0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(46,125,50,0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(149,165,166,0.08) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%233498db" opacity="0.03"/><circle cx="12.5" cy="12.5" r="0.5" fill="%232c3e50" opacity="0.03"/><circle cx="37.5" cy="37.5" r="0.5" fill="%2327ae60" opacity="0.03"/><path d="M0 25 Q25 0 50 25 Q25 50 0 25" fill="none" stroke="%233498db" stroke-width="0.2" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.6;
    animation: heroShimmer 8s ease-in-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
    text-shadow: none;
    animation: float 6s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
    animation: pulse 4s ease-in-out infinite;
}

.hero-desc {
    font-size: 1.13rem;
    color: #444;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 10;
}

.hero-contact {
    font-size: 1.08rem;
    color: #3498db;
    font-weight: 600;
    position: relative;
    z-index: 10;
}

.hero-contact span {
    font-size: 1.18rem;
    font-weight: 700;
    color: #2c3e50;
}

/* 英雄区域装饰元素 */
.hero-key-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
    z-index: 5;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-particles::before {
    content: '✨';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 1.5rem;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

.hero-particles::after {
    content: '⭐';
    position: absolute;
    top: 60%;
    right: 15%;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: float 5s ease-in-out infinite reverse;
}

/* 添加边框发光效果 */
.hero-text-wrap::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(52,152,219,0.3) 0%, 
        rgba(46,125,50,0.3) 25%, 
        rgba(149,165,166,0.3) 50%, 
        rgba(52,152,219,0.3) 75%, 
        rgba(46,125,50,0.3) 100%);
    border-radius: 26px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
    pointer-events: none;
}

/* 指南页面主容器 */
.guide-section {
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(247,250,252,0.95) 50%, rgba(237,242,247,0.95) 100%),
        radial-gradient(circle at 20% 20%, rgba(52,152,219,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46,125,50,0.1) 0%, transparent 50%);
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(52,152,219,0.15),
        0 8px 32px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border-radius: 24px;
    border: 1px solid rgba(52,152,219,0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

/* 指南页面装饰效果 */
.guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(52,152,219,0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(46,125,50,0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(149,165,166,0.08) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="guide-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%233498db" opacity="0.03"/><circle cx="12.5" cy="12.5" r="0.5" fill="%232c3e50" opacity="0.03"/><circle cx="37.5" cy="37.5" r="0.5" fill="%2327ae60" opacity="0.03"/><path d="M0 25 Q25 0 50 25 Q25 50 0 25" fill="none" stroke="%233498db" stroke-width="0.2" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23guide-pattern)"/></svg>');
    opacity: 0.6;
    animation: heroShimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.guide-section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(52,152,219,0.3) 0%, 
        rgba(46,125,50,0.3) 25%, 
        rgba(149,165,166,0.3) 50%, 
        rgba(52,152,219,0.3) 75%, 
        rgba(46,125,50,0.3) 100%);
    border-radius: 26px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
    pointer-events: none;
}

/* 指南页面头部 */
.guide-header {
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

.guide-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.guide-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* 通用区块标题 */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #27ae60);
    border-radius: 2px;
}

/* 服务流程 - 时间线样式 */
.process-timeline {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3498db, #27ae60);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

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

.timeline-marker {
    position: relative;
    z-index: 2;
    margin-right: 2rem;
    flex-shrink: 0;
}

.marker-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #27ae60);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    z-index: 3;
}

.marker-line {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, #3498db, #27ae60);
    z-index: 1;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    flex: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.timeline-badge {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.timeline-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-contact i {
    font-size: 1.2rem;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.5;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

/* 服务优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.advantage-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* 注意事项 */
.notices-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.notice-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.notice-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.notice-content p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

/* 联系信息 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.contact-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes heroShimmer {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes drive {
    0% {
        left: -10%;
    }
    100% {
        left: 110%;
    }
}

@keyframes driveReverse {
    0% {
        right: -10%;
    }
    100% {
        right: 110%;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-contact {
        font-size: 1rem;
    }
    
    .hero-contact span {
        font-size: 1.1rem;
    }
    
    .hero-text-wrap {
        padding: 60px 10px 40px 10px;
        margin: 15px auto;
    }
    
    .guide-title {
        font-size: 2rem;
    }
    
    .guide-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .process-timeline {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .timeline-marker {
        margin-right: 1.5rem;
    }
    
    .marker-circle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .timeline-header h4 {
        font-size: 1.2rem;
    }
    
    .advantages-grid,
    .notices-list,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-item,
    .notice-item,
    .contact-item {
        padding: 1.5rem;
    }
    
    .guide-section {
        margin: 0 1rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .hero-contact {
        font-size: 0.95rem;
    }
    
    .hero-contact span {
        font-size: 1.05rem;
    }
    
    .hero-text-wrap {
        padding: 40px 10px 30px 10px;
        margin: 10px auto;
    }
    
    .guide-title {
        font-size: 1.8rem;
    }
    
    .guide-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .step-item,
    .advantage-item,
    .notice-item,
    .contact-item {
        padding: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .advantage-icon,
    .contact-icon {
        font-size: 2rem;
    }
    
    .notice-icon {
        font-size: 1.5rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .detail-badge {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
} 