/* Rending Pages Styles */

/* Rending Hero Section */
.rending-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 0 0;
}

.hero-background-rending {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 50%, #2E5B8A 100%);
    background-image: url('../images/rending_01/hero_rending_01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.rending-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-content {
    margin-bottom: 60px;
}

.hero-main-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-contact-btn {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-contact-btn:hover {
    background: #ffffff;
    color: #4A90E2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-image-content {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    bottom:0;
}

.hero-people-image {
    max-width: 1200px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Service Start Section */
.service-start-section {
    padding: 80px 0 100px;
    background: #050d1e;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-start-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #3b82f6;
    margin-bottom: 30px;
    letter-spacing: -0.025em;
    text-transform: none;
}

.service-start-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.2;
}

.service-start-content h3 {
    font-size: 28px;
    font-weight: 400;
    color: #555;
    line-height: 1.4;
}

.message-bubbles-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0;
}

.message-bubble {
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
}

.message-bubble:hover {
    transform: scale(1.05);
}

.message-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 개별 버블 스타일 - 좌우 정렬과 크기 지정 */
.message-1 {
    justify-content: flex-end; /* 우측 정렬 */
    margin-right: 12%;
    width: 400px;
    align-self: flex-end;
}

.message-2 {
    justify-content: flex-start; /* 좌측 정렬 */
    margin-left: 12%;
    width: 400px;
    align-self: flex-start;
}

.message-3 {
    justify-content: flex-end; /* 우측 정렬 */
    margin-right: 8%;
    width: 400px;
    align-self: flex-end;
}

.message-4 {
    justify-content: flex-start; /* 좌측 정렬 */
    width: 400px;
    align-self: flex-start;
}

.message-5 {
    justify-content: flex-end; /* 우측 정렬 */
    width: 400px;
    align-self: flex-end;
}

.message-6 {
    justify-content: flex-start; /* 좌측 정렬 */
    margin-left: 5%;
    width: 400px;
    align-self: flex-start;
}

/* Service Necessity Section */
.service-necessity-section {
    padding: 100px 0 120px;
    background: #050d1e;
    text-align: center;
}

.necessity-header {
    margin-bottom: 80px;
}

.necessity-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 30px;
    letter-spacing: 0.025em;
}

.necessity-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.necessity-header h3 {
    font-size: 24px;
    font-weight: 400;
    color: #555;
    line-height: 1.4;
}

.necessity-cards-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.necessity-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    position: relative;
}

.necessity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 홀수 카드 (텍스트 좌측 정렬) */
.card-odd {
    justify-content: flex-start;
}

.card-odd .necessity-card-content {
    text-align: left;
}

/* 짝수 카드 (텍스트 중앙 정렬) */
.card-even {
    justify-content: center;
}

.card-even .necessity-card-content {
    text-align: center;
}

.necessity-card-content {
    flex: 1;
    padding: 30px 40px;
    max-width: 800px;
}

.card-caption {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: none;
}

.necessity-card-content h4 {
    font-size: 16px;
    font-weight: 400;
    color: #1f2937;
    line-height: 1.4;
    margin: 0;
}

.necessity-card-content h4 strong {
    font-weight: 700;
    color: #1f2937;
}

/* Service Intro Section */
.service-intro-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.service-intro-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.4;
}

.service-intro-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.r-service-feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.r-service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.r-service-feature-card h4 {
    font-size: 16px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.4;
}

.r-service-feature-card h4 strong {
    font-weight: 700;
    color: #3b82f6;
}

.feature-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Differentiation Section */
.differentiation-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.diff-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #3b82f6;
    margin-bottom: 30px;
    letter-spacing: -0.025em;
    text-transform: none;
}

.differentiation-content h2 {
    font-size: 28px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 60px;
    line-height: 1.3;
}

.differentiation-content h2 strong {
    font-weight: 700;
}

.differentiation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.diff-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.diff-content-section {
    text-align: left;
}

.diff-list {
    list-style: none;
    counter-reset: diff-counter;
    padding: 0;
    margin: 0;
}

.diff-list li {
    counter-increment: diff-counter;
    position: relative;
    padding: 20px 0 20px 60px;
    font-size: 18px;
    line-height: 1.6;
    color: #2c3e50;
    border-bottom: 1px solid #f0f0f0;
}

.diff-list li:last-child {
    border-bottom: none;
}

.diff-list li::before {
    content: counter(diff-counter);
    position: absolute;
    left: 0;
    top: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.diff-list li strong {
    font-weight: 700;
    color: #3b82f6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #020C1B;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-text-section {
    text-align: center;
}

.benefits-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #3b82f6;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-text-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
}

.benefits-text-section h2 strong {
    font-weight: 700;
    color: #3b82f6;
}

.benefits-cards-section {
    display: flex;
    justify-content: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: white;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.benefit-card h4 strong {
    font-weight: 700;
    color: #3b82f6;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* 다양한 기능 섹션 */
.diverse-functions-section {
    padding: 100px 0;
    background: #ffffff;
}

.diverse-functions-header {
    text-align: center;
    margin-bottom: 80px;
}

.diverse-functions-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #4A90E2;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.diverse-functions-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.diverse-functions-header h2 strong {
    color: #333;
}

.diverse-functions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.diverse-function-card {
    background: #fff;
    border: 1px solid #4A90E2;
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 70px;
}

.diverse-function-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.diverse-function-card .function-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diverse-function-card .function-icon i {
    font-size: 20px;
    color: #333;
}

.diverse-function-card span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    flex: 1;
}

/* Product Introduction Section */
.product-introduction-section {
    padding: 80px 0;
    background: #ffffff;
}

.product-intro-header {
    text-align: center;
    margin-bottom: 80px;
}

.product-intro-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #4A90E2;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.product-intro-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 0;
}

.product-intro-header h2 strong {
    color: #333;
}

.product-plan-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-plan-block:last-child {
    margin-bottom: 0;
}

.plan-logo-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-logo {
    height: 180px;
    width: auto;
    object-fit: contain;
}

.plan-features-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-features {
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 80px 0;
    background: #F7F7F9;
    text-align: center;
}

.pricing-subtitle {
    color: #4A90E2;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.pricing-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 60px;
    color: #333;
}

.pricing-cta-content h2 strong {
    color: #333;
}

.pricing-plans {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.plan-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    flex: 1;
    max-width: 600px;
}

.plan-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.plan-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.plan-action {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-outline,
.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    text-align: center;
}

.btn-outline {
    border: 2px solid #4A90E2;
    color: #4A90E2;
    background: transparent;
}

.btn-outline:hover {
    background: #4A90E2;
    color: white;
}

.btn-primary {
    background: #4A90E2;
    color: white;
    border: 2px solid #4A90E2;
}

.btn-primary:hover {
    background: #357ABD;
    border-color: #357ABD;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rending-hero-section {
        min-height: 80vh;
        padding: 80px 0 40px;
    }
    
    .hero-main-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .hero-contact-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .hero-text-content {
        margin-bottom: 40px;
    }
    
    .hero-people-image {
        max-width: 350px;
    }
    
    .service-start-content h2,
    .necessity-header h2,
    .service-intro-content h2,
    .differentiation-content h2,
    .product-intro-content h2,
    .pricing-cta-content h2 {
        font-size: 28px;
    }
    
    .service-start-subtitle,
    .necessity-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .necessity-cards-container {
        max-width: 100%;
        gap: 20px;
        padding: 0 20px;
    }
    
    .necessity-card {
        flex-direction: column !important;
        min-height: auto;
        text-align: center;
    }
    
    .necessity-card-content {
        padding: 25px 20px;
        text-align: center;
    }
    
    .necessity-card-content h4 {
        font-size: 16px;
    }
    
    .card-image {
        width: 100%;
        height: 100px;
    }
    
    .message-bubbles-container {
        gap: 30px;
        padding: 20px;
        height: auto;
    }
    
    .message-bubble {
        max-width: 100%;
    }
    
    .message-1 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-2 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-3 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-4 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-5 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-6 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .r-service-feature-card {
        padding: 30px 25px;
    }
    
    .r-service-feature-card h4 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .differentiation-layout {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .diverse-functions-section {
        padding: 60px 0;
    }
    
    .diverse-functions-header {
        margin-bottom: 50px;
    }
    
    .diverse-functions-header h2 {
        font-size: 28px;
    }
    
    .diverse-functions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }
    
    .diverse-function-card {
        padding: 18px 20px;
        min-height: 60px;
    }
    
    .diverse-function-card .function-icon {
        width: 22px;
        height: 22px;
    }
    
    .diverse-function-card .function-icon i {
        font-size: 18px;
    }
    
    .diverse-function-card span {
        font-size: 14px;
    }
    
    .product-introduction-section {
        padding: 50px 0;
    }
    
    .product-intro-header {
        margin-bottom: 60px;
    }
    
    .product-intro-header h2 {
        font-size: 32px;
        line-height: 1.4;
    }
    
    .product-plan-block {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .plan-logo-section,
    .plan-features-section {
        width: 100%;
    }
    
    .plan-logo {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .plan-features {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .pricing-plans {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .plan-container {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-cta-content h2 {
        font-size: 28px;
    }
    
    .pricing-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .rending-hero-section {
        min-height: 70vh;
        padding: 60px 0 30px;
    }
    
    .hero-main-title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .hero-contact-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-text-content {
        margin-bottom: 30px;
    }
    
    .hero-people-image {
        max-width: 280px;
    }
    
    .service-start-section,
    .service-necessity-section,
    .service-intro-section,
    .differentiation-section,
    .benefits-section,
    .diverse-functions-section,
    .product-introduction-section,
    .pricing-cta-section {
        padding: 60px 0;
    }
      
    .service-start-content h2,
    .necessity-header h2,
    .service-intro-content h2,
    .differentiation-content h2,
    .product-intro-content h2,
    .pricing-cta-content h2 {
        font-size: 24px;
    }
    
    .service-start-subtitle,
    .necessity-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .necessity-cards-container {
        gap: 16px;
        padding: 0 15px;
    }
    
    .necessity-card-content {
        padding: 20px 15px;
    }
    
    .necessity-card-content h4 {
        font-size: 14px;
    }
    
    .card-image {
        height: 80px;
    }
    
    .message-bubbles-container {
        gap: 30px;
        padding: 20px;
        height: auto;
    }
    
    .message-bubble {
        max-width: 100%;
    }
    
    .message-1 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-2 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-3 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-4 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-5 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .message-6 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .service-features-grid {
        gap: 25px;
    }
    
    .r-service-feature-card {
        padding: 25px 20px;
    }
    
    .r-service-feature-card h4 {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .diverse-functions-section {
        padding: 50px 0;
    }
    
    .diverse-functions-header h2 {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .diverse-functions-grid {
        padding: 0 15px;
        gap: 12px;
    }
    
    .diverse-function-card {
        padding: 16px 18px;
        gap: 12px;
        min-height: 55px;
    }
    
    .diverse-function-card .function-icon {
        width: 20px;
        height: 20px;
    }
    
    .diverse-function-card .function-icon i {
        font-size: 16px;
    }
    
    .diverse-function-card span {
        font-size: 13px;
    }
    
    .product-introduction-section {
        padding: 40px 0;
    }
    
    .product-intro-header {
        margin-bottom: 40px;
    }
    
    .product-intro-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .product-intro-header h2 {
        font-size: 26px;
        line-height: 1.4;
    }
    
    .product-plan-block {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .plan-logo {
        width: 100%;
        max-width: 320px;
        height: auto;
    }
    
    .plan-features {
        width: 100%;
        max-width: 320px;
        height: auto;
    }
}

 