/* 玫瑰雾金配色方案 */
:root {
    --rose-gold: #E8B4B8;
    --rose-gold-light: #F2D7DA;
    --rose-gold-dark: #D4969B;
    --mist-white: #FAFAFA;
    --mist-gray: #F5F5F5;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --success-green: #10B981;
    --danger-red: #EF4444;
    --warning-orange: #F59E0B;
    --gradient-primary: linear-gradient(135deg, #E8B4B8 0%, #D4969B 100%);
    --gradient-secondary: linear-gradient(135deg, #F2D7DA 0%, #E8B4B8 100%);
    --shadow-light: 0 2px 10px rgba(232, 180, 184, 0.1);
    --shadow-medium: 0 4px 20px rgba(232, 180, 184, 0.15);
    --shadow-heavy: 0 8px 30px rgba(232, 180, 184, 0.2);
}

/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif KR', serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--mist-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 네비게이션 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rose-gold-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
}

.nav-logo i {
    color: var(--rose-gold);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--rose-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* 히어로 섹션 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(../images/bgc.png) no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 250, 0.1);
}

.stock-animation {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 2;
}

.stock-ticker {
    display: flex;
    gap: 40px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-light);
}

.ticker-item.up .price {
    color: var(--success-green);
}

.ticker-item.down .price {
    color: var(--danger-red);
}

.price {
    font-weight: 600;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--rose-gold-dark);
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
}

.hero-badge i {
    color: var(--rose-gold);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-main {
    display: block;
    color: var(--charcoal);
}

.title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-gold-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.cta-note i {
    color: var(--rose-gold);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-heavy);
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.profile-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-placeholder {
    font-size: 3rem;
    color: var(--rose-gold-dark);
}

.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.profile-info p {
    color: var(--charcoal-light);
    margin-bottom: 15px;
}

.profile-credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-credentials span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.profile-credentials i {
    color: var(--rose-gold);
}

/* 버튼 스타일 */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

/* 按钮图标样式 */
.button-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.cta-button.secondary {
    background: white;
    color: var(--rose-gold-dark);
    border: 2px solid var(--rose-gold);
}

.cta-button.secondary:hover {
    background: var(--rose-gold);
    color: white;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* 섹션 공통 스타일 */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About 섹션 */
.about {
    background: var(--mist-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--rose-gold-dark);
}

.about-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.about-item p {
    color: var(--charcoal-light);
    line-height: 1.6;
}

/* Benefits 섹션 */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-item i {
    color: var(--success-green);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.benefit-item p {
    color: var(--charcoal-light);
    line-height: 1.5;
}

.chart-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--mist-gray);
}

.chart-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
}

.chart-period {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.performance-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    width: 100px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    text-align: right;
}

.bar-container {
    flex: 1;
    position: relative;
    height: 30px;
    background: var(--mist-gray);
    border-radius: 15px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 15px;
    transition: width 1s ease;
}

.bar-fill.highlight {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.bar-fill.premium {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.bar-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

/* Guide 섹션 */
.guide {
    background: var(--mist-gray);
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guide-book {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    text-align: center;
}

.book-cover {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.book-cover i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.book-cover h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.book-cover p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.book-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.feature i {
    color: var(--rose-gold);
}

.guide-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.guide-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    margin-bottom: 30px;
}

.guide-contents h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.guide-contents ul {
    list-style: none;
    margin-bottom: 30px;
}

.guide-contents li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--charcoal-light);
}

.guide-contents i {
    color: var(--rose-gold);
    font-size: 0.8rem;
}

.guide-note {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-top: 10px;
}

/* Testimonials 섹션 */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold-dark);
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.testimonial-rating {
    margin-left: auto;
    color: var(--warning-orange);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: var(--charcoal-light);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--mist-gray);
}

.result-label {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.result-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.result-value.positive {
    color: var(--success-green);
}

/* Final CTA 섹션 */
.final-cta {
    background: var(--gradient-secondary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--charcoal-light);
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--charcoal-light);
}

.cta-feature i {
    color: var(--rose-gold);
    font-size: 1.2rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-top: 20px;
}

.cta-guarantee i {
    color: var(--success-green);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--rose-gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 0.9rem;
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0 10px; /* 防止按钮超出屏幕 */
}

.fixed-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap; /* 防止文字换行 */
    min-width: fit-content; /* 确保按钮宽度适应内容 */
    max-width: calc(100vw - 40px); /* 防止超出屏幕宽度 */
}

.fixed-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 184, 0.3);
}

.fixed-cta-button .button-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0; /* 防止图标被压缩 */
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    /* 导航栏隐藏 */
    .nav-menu,.navbar {
        display: none;
    }
    
    /* Hero区域优化 */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 80px 20px 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .cta-note {
        justify-content: center;
        text-align: center;
    }
    
    /* 内容区域居中 */
    .benefits-content,
    .guide-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .benefits-text {
        text-align: center;
    }
    
    .benefit-list {
        align-items: center;
    }
    
    .benefit-item {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .guide-content .guide-image {
        order: -1;
    }
    
    .guide-text {
        text-align: center;
    }
    
    .guide-contents {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* CTA区域居中 */
    .cta-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .cta-feature {
        justify-content: center;
    }
    
    /* Footer居中 */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* 评价区域 */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        margin: 0 auto;
        max-width: 400px;
    }
    
    /* 固定按钮 - 保持完整显示 */
    .fixed-cta-button {
        padding: 15px 25px;
        font-size: 1rem;
        white-space: nowrap;
        min-width: auto;
    }
    
    /* 确保按钮文字完整显示 */
    .fixed-cta-button span {
        display: inline;
    }
    
    /* About区域居中 */
    .about-grid {
        justify-items: center;
    }
    
    .about-item {
        max-width: 350px;
    }
    
    /* 股票ticker在移动端的优化 */
    .stock-ticker {
        gap: 20px;
    }
    
    .ticker-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero区域小屏优化 */
    .hero-container {
        padding: 60px 15px 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-header p {
        text-align: center;
        padding: 0 10px;
    }
    
    /* About区域 */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-item {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* 统计数据优化 */
    .hero-stats {
        gap: 15px;
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* 按钮优化 */
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        text-align: center;
    }
    
    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* 固定按钮小屏优化 */
    .fixed-cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 90vw;
        text-align: center;
    }
    
    /* Benefits区域 */
    .benefits-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .benefit-item {
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Guide区域 */
    .guide-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .guide-contents {
        max-width: 320px;
    }
    
    /* 评价区域 */
    .testimonial-item {
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* CTA区域 */
    .cta-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        text-align: center;
        padding: 0 10px;
    }
    
    /* 股票ticker小屏优化 */
    .ticker-item {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    /* Profile卡片优化 */
    .profile-card {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
}

/* 超小屏幕优化 (320px以下) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-container {
        padding: 50px 10px 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-button.large {
        max-width: 280px;
        font-size: 1rem;
    }
    
    .fixed-cta-button {
        padding: 10px 15px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .fixed-cta-button .button-icon {
        width: 16px;
        height: 16px;
    }
    
    .about-item,
    .testimonial-item,
    .benefit-item {
        max-width: 280px;
    }
    
    .profile-card {
        max-width: 260px;
        padding: 20px;
    }
    
    .ticker-item {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}
