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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInFromLeft {
    0% { opacity: 0; transform: translateX(-100px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
    0% { opacity: 0; transform: translateX(100px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.slide-in {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.slide-in:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

.scale-on-hover {
    transition: transform 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 50%);
    animation: float 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 50px;
    opacity: 0.9;
}

.product-showcase {
    margin: 60px 0;
}

.product-hero {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 107, 0.3));
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #111111;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    background: #ff6b6b;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #ff5252;
    transform: scale(1.1);
}

.progress-container {
    flex: 1;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #ff6b6b;
    width: 0%;
    transition: width 0.1s ease;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    font-weight: 700;
}

.story-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.story-highlight {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.story-highlight p {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Story CTA */
.story-cta {
    margin-top: 40px;
    text-align: center;
}

.story-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252, #ff4444);
}

/* Transformation Section */
.transformation-section {
    padding: 80px 0;
    background: #111111;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.transformation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.transformation-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.transformation-info {
    padding: 25px;
    text-align: center;
}

.transformation-info h3 {
    font-size: 1.3rem;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.transformation-info p {
    font-style: italic;
    opacity: 0.9;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.step-image {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    margin-top: 20px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #111111;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.customer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stars {
    color: #ffb800;
    font-size: 1rem;
    margin-bottom: 5px;
}

.timeago {
    font-size: 0.9rem;
    opacity: 0.7;
}

.testimonial-card p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-footer {
    color: #ff6b6b;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid #ff6b6b;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

.popular-badge,
.ultimate-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.supply-info {
    opacity: 0.8;
    margin-bottom: 30px;
}

.product-image {
    margin: 30px 0;
}

.product-image img {
    max-width: 250px;
    height: auto;
}

.pricing-info {
    margin: 30px 0;
    flex-grow: 1;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.pricing-list li::before {
    content: "•";
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing-list .original-price {
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-list .current-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ff6b6b;
}

.pricing-list .savings {
    font-weight: 600;
    color: #4caf50;
}

.pricing-list .shipping {
    opacity: 0.8;
}

.pricing-list .shipping.free {
    color: #4caf50;
    font-weight: 600;
}

.pricing-list .per-bottle {
    opacity: 0.8;
    font-style: italic;
}

.cta-button {
    display: block;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: #111111;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-badge {
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
}

.guarantee-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ff6b6b;
}

.guarantee-text p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px;
}

.dietary-disclaimer {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.disclaimer-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4caf50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.disclaimer-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Individual Results Section */
.individual-results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.results-content {
    max-width: 1000px;
    margin: 0 auto;
}

.results-text h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ff6b6b;
    font-weight: 700;
}

.results-text > p {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.7;
}

.digestive-health-info {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.health-factor {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.health-factor:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.15);
}

.factor-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.factor-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.factor-content p {
    line-height: 1.6;
    opacity: 0.9;
}

.science-explanation {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.science-explanation h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff6b6b;
    text-align: center;
}

.science-explanation p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.science-explanation ul {
    margin: 20px 0;
    padding-left: 30px;
}

.science-explanation li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.key-insight {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
}

/* Diet Compatibility Section */
.diet-compatibility-section {
    padding: 80px 0;
    background: #111111;
}

.diet-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.diet-intro p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.diets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.diet-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.3);
}

.diet-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.diet-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.diet-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff6b6b;
}

.diet-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.diet-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.benefit {
    font-size: 0.95rem;
    color: #4caf50;
    font-weight: 500;
}

.diet-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.diet-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252, #ff4444);
}

.diet-guarantee {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.diet-guarantee h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.diet-guarantee p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.compatibility-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.compat-stat {
    text-align: center;
}

.compat-stat .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 8px;
}

.compat-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Diet CTA Section */
.diet-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.diet-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.diet-cta-text {
    text-align: center;
}

.diet-cta-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.diet-cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: white;
}

.diet-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.diet-cta-button:hover {
    background: linear-gradient(135deg, #ff5252, #ff4444);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.diet-cta-image {
    text-align: center;
}

.diet-cta-image img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments for diet section */
@media (max-width: 768px) {
    .diets-grid {
        grid-template-columns: 1fr;
    }
    
    .diet-card {
        padding: 25px 20px;
    }
    
    .diet-guarantee {
        padding: 30px 20px;
    }
    
    .compatibility-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .diet-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .diet-cta-section {
        padding: 50px 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-badge {
        max-width: 150px;
    }
    
    .video-wrapper iframe {
        height: 250px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .transformations-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .health-factor {
        flex-direction: column;
        text-align: center;
    }
    
    .factor-icon {
        width: 100%;
    }
    
    .science-explanation {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}