/* 起名指南宣传页面特定样式 */

/* 文字浮动背景 */
.characters-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    overflow: hidden;
}

.floating-characters {
    position: absolute;
    font-size: 8rem;
    color: #D4AF37;
    white-space: nowrap;
    animation: floatHorizontal 120s linear infinite;
    top: 30%;
    left: 0;
    font-family: 'Ma Shan Zheng', cursive;
    opacity: 0.5;
}

.floating-characters .chinese-char {
    display: inline-block;
    margin: 0 40px;
    animation: floatVertical 8s ease-in-out infinite;
    animation-delay: calc(var(--char-index) * 0.5s);
}

.floating-characters .chinese-char:nth-child(1) { --char-index: 1; }
.floating-characters .chinese-char:nth-child(2) { --char-index: 2; }
.floating-characters .chinese-char:nth-child(3) { --char-index: 3; }
.floating-characters .chinese-char:nth-child(4) { --char-index: 4; }
.floating-characters .chinese-char:nth-child(5) { --char-index: 5; }
.floating-characters .chinese-char:nth-child(6) { --char-index: 6; }
.floating-characters .chinese-char:nth-child(7) { --char-index: 7; }
.floating-characters .chinese-char:nth-child(8) { --char-index: 8; }
.floating-characters .chinese-char:nth-child(9) { --char-index: 9; }
.floating-characters .chinese-char:nth-child(10) { --char-index: 10; }
.floating-characters .chinese-char:nth-child(11) { --char-index: 11; }
.floating-characters .chinese-char:nth-child(12) { --char-index: 12; }

.naming-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 30%);
}

@keyframes floatHorizontal {
    0% {
        transform: translateX(-20%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes floatVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* 起名英雄区 */
.naming-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.naming-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.naming-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.naming-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.naming-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    color: rgba(212, 175, 55, 0.8);
    font-style: italic;
    font-size: 1.2rem;
}

.points-display {
    background: rgba(42, 11, 67, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.points-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.points-badge i {
    font-size: 2rem;
    color: #D4AF37;
}

.points-info {
    display: flex;
    flex-direction: column;
}

.points-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.points-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

.points-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.naming-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.name-preview {
    background: rgba(42, 11, 67, 0.8);
    border-radius: 25px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.name-example {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.name-characters {
    display: flex;
    gap: 10px;
}

.character {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: 700;
    font-family: 'Ma Shan Zheng', cursive;
    border: 2px solid rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
}

.character::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: strokeFlow 3s ease-in-out infinite;
    animation-delay: calc(var(--stroke) * 0.3s);
}

.name-meaning {
    flex: 1;
}

.name-meaning h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.name-meaning p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.name-score {
    display: flex;
    align-items: center;
    gap: 5px;
}

.score-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.score-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
}

.score-max {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.name-attributes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.attribute {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.attribute:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.attribute-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.attribute-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attribute-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.attribute-value {
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.attribute-value.excellent {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.attribute-value.good {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

@keyframes strokeFlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* 起名类型选择 */
.naming-types-section {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.naming-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.naming-type-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.naming-type-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.naming-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.naming-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.type-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.type-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding-left: 0;
}

.type-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.type-features li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #4CAF50;
}

.type-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.points-cost {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.2rem;
}

.points-cost i {
    font-size: 1.5rem;
}

.type-action .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* 起名流程 */
.naming-process-section {
    padding: 100px 0;
}

.process-steps {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 2px;
    height: calc(100% - 100px);
    background: linear-gradient(to bottom, transparent, #D4AF37, transparent);
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    border: 3px solid rgba(212, 175, 55, 0.5);
    z-index: 2;
}

.step-content {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

/* 起名核心要素 */
.naming-factors-section {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.factor-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(42, 11, 67, 0.9);
}

.factor-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: #D4AF37;
}

.factor-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.factor-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.factor-example {
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid #D4AF37;
}

.factor-example h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.factor-example p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* 成功案例 */
.naming-cases-section {
    padding: 100px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.case-type {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.case-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.original, .new, .company {
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 500;
}

.original {
    background: rgba(255, 87, 34, 0.1);
    color: #FF5722;
}

.new {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.company {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.case-name i {
    color: #D4AF37;
}

.case-analysis h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.case-analysis p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-feedback {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(212, 175, 55, 0.9);
    font-size: 0.9rem;
}

.feedback-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* 价格说明 */
.naming-pricing-section {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.pricing-explanation {
    max-width: 800px;
    margin: 50px auto 0;
}

.pricing-card {
    background: rgba(42, 11, 67, 0.8);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-header h3 i {
    color: #D4AF37;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pricing-feature i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.pricing-feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.95rem;
}

.points-comparison {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
}

.points-comparison h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.comparison-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    min-width: 120px;
}

.comparison-item i {
    font-size: 2rem;
    color: #D4AF37;
}

.pricing-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-highlight {
    font-size: 1.3rem;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 20px;
}

/* FAQ常见问题 */
.naming-faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 1000px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA区域 */
.naming-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 11, 67, 0.9) 0%, rgba(74, 27, 109, 0.9) 100%);
    border-radius: 40px;
    margin: 40px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-weight: 500;
    font-size: 1.1rem;
}

.highlight-item i {
    font-size: 1.3rem;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(42, 11, 67, 0.95);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 2px solid #D4AF37;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

#selected-type {
    color: #D4AF37;
    font-weight: 700;
}

.points-highlight {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-actions .btn {
    flex: 1;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .naming-title {
        font-size: 3.5rem;
    }
    
    .naming-hero-content {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .naming-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .naming-tagline {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .process-steps::before {
        left: 40px;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    
    .step-icon {
        display: none;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .naming-title {
        font-size: 2.8rem;
    }
    
    .naming-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .naming-types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .naming-title {
        font-size: 2.2rem;
    }
    
    .naming-subtitle {
        font-size: 1.1rem;
    }
    
    .naming-hero-visual {
        height: auto;
    }
    
    .name-preview {
        padding: 20px;
    }
    
    .character {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .name-meaning h4 {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .comparison-items {
        flex-direction: column;
        align-items: center;
    }
}