/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    /* Increased line height for readability */
    color: #333;
    background-color: #f4f7f6;
    /* Light grey-blue background */
    font-size: 18px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Roboto', sans-serif;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.6rem;
    color: #6C5CE7;
    margin-top: 0;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #6C5CE7;
    margin-top: 5px;
}

p {
    margin-bottom: 1.5rem;
}

strong {
    font-weight: 800;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* Contains floated children */
}

/* Header */
header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #2c3e50;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* Sections General */
section {
    padding: 40px 20px;
    border-bottom: 1px solid #f0f0f0;
}

section:last-child {
    border-bottom: none;
}

/* Hero */
.hero {
    background-color: #fff;
    padding-bottom: 20px;
}

/* Top Visuals */
.top-visuals {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.visual-container {
    display: flex;
    flex-direction: column;
    /* Mobile first: Stacked */
    align-items: center;
    gap: 20px;
}

.author-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-img-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 800;
    font-size: 1.2rem;
    color: #2c3e50;
}

.author-title {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-preview {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-img-small {
    max-width: 120px;
}

/* Intro */
.intro {
    background-color: #fff;
}

.intro .highlight-text {
    font-weight: 700;
    font-size: 1.2em;
    background-color: #fff8e1;
    /* Softer yellow */
    padding: 15px;
    border-left: 5px solid #ffc107;
    display: block;
    margin-bottom: 30px;
    border-radius: 4px;
}

.experience-list {
    margin-left: 20px;
    margin-bottom: 30px;
}

.experience-list li {
    margin-bottom: 10px;
}

.disclaimer-box {
    background-color: #f0f4f8;
    border-left: 4px solid #6C5CE7;
    padding: 20px;
    font-size: 0.95em;
    color: #444;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

/* Product Section */
.product {
    background-color: #fafafa;
}

.product-image-wrapper {
    text-align: center;
    margin: 40px 0;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: inline-block;
    width: 100%;
}

.product-img {
    max-width: 280px;
    margin: 0 auto;
}

/* Ingredients */
.ingredients {
    background-color: #fff;
}

.ingredient-list {
    list-style: none;
    margin-top: 20px;
}

.ingredient-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.ingredient-list li::before {
    content: "✓";
    color: #fff;
    background: #6C5CE7;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

.verdict {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    color: #1b5e20;
    margin-top: 30px;
    border: 1px solid #c8e6c9;
    font-weight: 600;
    text-align: center;
}

/* Q&A Accordion */
.qa {
    background-color: #f9f9f9;
}

.accordion {
    margin: 30px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #f0f0f0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-header::after {
    content: "+";
    font-size: 1.5rem;
    color: #6C5CE7;
    font-weight: 400;
}

.accordion-header.active::after {
    content: "-";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.accordion-content p {
    padding: 0 20px 20px 20px;
    font-size: 0.95em;
    color: #555;
    margin-bottom: 0;
}

/* BMI Widget */
.bmi-section {
    background-color: #fff;
    padding: 40px 20px;
}

.bmi-widget {
    max-width: 450px;
    margin: 30px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

/* Tips */
.tips {
    background-color: #f9f9f9;
}

.tip-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    border: none;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.tip-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    padding-top: 5px;
}

.tip-content h4 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.giuli-tip {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95em;
    margin-top: 15px;
    color: #0d47a1;
    border-left: 4px solid #2196f3;
}

/* Pricing */
.pricing {
    background-color: #fff;
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #6C5CE7;
    background-color: #fff;
    position: relative;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.15);
}

/* Proof */
.proof {
    background-color: #f4f7f6;
    text-align: center;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background-color: #fff;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px dashed #ddd;
}

.gallery-item-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Conclusion */
.conclusion {
    background-color: #fff;
    font-size: 1.1em;
    padding: 60px 20px;
    text-align: center;
}

/* CTA Buttons */
.cta-container {
    text-align: center;
    margin: 50px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #e53935 0%, #c62828 100%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
    transition: all 0.2s;
    width: 100%;
    max-width: 450px;
    border: 1px solid #b71c1c;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.5);
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(198, 40, 40, 0.4);
}

.cta-button.small {
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 8px;
    background: #e53935;
    box-shadow: none;
}

.cta-button.big-red-button {
    font-size: 1.4rem;
    padding: 30px 20px;
    max-width: 100%;
    border-radius: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    padding: 50px 0;
    margin-top: 0;
    text-align: center;
    font-size: 0.9em;
    color: #bdc3c7;
}

.disclaimer {
    font-size: 0.8em;
    margin-top: 15px;
    color: #7f8c8d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Desktop */
@media (min-width: 768px) {
    .visual-container {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }

    .profile-img-circle {
        width: 180px;
        height: 180px;
    }

    .product-img-small {
        max-width: 160px;
    }

    .pricing-table {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
    }

    .pricing-card {
        flex: 1;
        margin: 0;
    }

    .pricing-card.featured {
        order: 0;
        transform: scale(1.1);
        z-index: 1;
    }

    .pricing-card.featured:hover {
        transform: scale(1.12);
    }
}

/* Metabolic Age Calculator Styles */
.metabolic-calculator-section {
    background-color: #fff;
    padding: 60px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mc-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
}

.mc-view {
    animation: fadeIn 0.5s ease-in-out;
}

.mc-hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mc-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.mc-accent {
    color: #8b5cf6;
}

.mc-desc {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.mc-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: background 0.3s;
}

.mc-feature-item:hover {
    background-color: #f9f9f9;
}

.mc-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #8b5cf6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mc-feature-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #333;
}

.mc-feature-text h3::after {
    display: none;
}

.mc-feature-text p {
    margin: 0;
    font-size: 0.95em;
    color: #666;
}

.mc-action-area {
    text-align: center;
    margin-bottom: 40px;
}

.mc-btn-primary {
    background: linear-gradient(180deg, #e53935 0%, #c62828 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.5);
}

.mc-btn-primary.big {
    padding: 20px 40px;
    font-size: 1.3rem;
    width: 100%;
    max-width: 400px;
}

.mc-btn-secondary {
    background: transparent;
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mc-btn-secondary:hover {
    background-color: #f9f9f9;
    border-color: #bbb;
}

.mc-footer-badges {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    font-weight: 600;
    letter-spacing: 1px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

/* Quiz View Styles */
.mc-progress-container {
    margin-bottom: 30px;
}

.mc-step-text {
    font-size: 1rem;
    color: #6C5CE7;
    margin-bottom: 10px;
    font-weight: 700;
}

.mc-step-text::after {
    display: none;
}

.mc-progress-bar-bg {
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.mc-progress-bar-fill {
    height: 100%;
    background-color: #8b5cf6;
    width: 0%;
    transition: width 0.5s ease;
}

.mc-question-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.mc-input-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.mc-option-btn {
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fff;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mc-option-btn:hover {
    border-color: #8b5cf6;
    background-color: #fbfaff;
    color: #8b5cf6;
}

.mc-numeric-input {
    width: 100%;
    padding: 20px;
    font-size: 1.5rem;
    border: 2px solid #ccc;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: #333;
}

.mc-numeric-input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.mc-nav-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.mc-nav-back {
    background: none;
    border: none;
    color: #999;
    font-weight: 700;
    cursor: pointer;
    padding: 10px;
}

.mc-nav-back:disabled {
    opacity: 0;
    cursor: default;
}

.mc-nav-back:hover:not(:disabled) {
    color: #333;
}

.mc-nav-info {
    font-size: 0.85rem;
    color: #bbb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Results View Styles */
.mc-results-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.mc-label {
    display: block;
    font-size: 1.1rem;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mc-big-number {
    font-size: 6rem;
    font-weight: 900;
    color: #8b5cf6;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px #eee;
}

.mc-result-desc {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.mc-protocol-section {
    margin-bottom: 40px;
}

.mc-recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mc-rec-item {
    display: flex;
    gap: 15px;
}

.mc-rec-check {
    width: 24px;
    height: 24px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
}

.mc-rec-content p {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.mc-rec-meta {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #aaa;
    display: flex;
    gap: 15px;
}

.mc-rec-meta span.accent {
    color: #8b5cf6;
}

.mc-share-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.mc-technical-note {
    background-color: #fbfaff;
    border: 1px solid #e0d4fc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mc-icon-note {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.mc-technical-note h4 {
    margin: 0 0 5px 0;
    color: #8b5cf6;
    font-size: 1rem;
}

.mc-technical-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

@media (min-width: 768px) {
    .mc-features {
        flex-direction: row;
    }

    .mc-feature-item {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .mc-share-section {
        flex-direction: row;
        justify-content: center;
    }
}

/* Simulator Styles */
.mc-simulator-section {
    margin: 40px 0;
    border: 2px solid #f0f0f0;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.mc-wrapper-sim {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mc-sim-controls {
    flex: 1;
}

.mc-sim-desc {
    color: #555;
    margin-bottom: 25px;
}

.mc-sim-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.mc-sim-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid #f0f0f0;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    color: #333;
    font-weight: 700;
}

.mc-sim-btn:hover {
    border-color: #ddd;
}

.mc-sim-btn.active {
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    color: #fff;
}

.mc-sim-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 12px;
}

.mc-sim-btn.active .mc-sim-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.mc-sim-result {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 250px;
}

.mc-sim-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.mc-sim-number {
    font-size: 5rem;
    font-weight: 900;
    color: #333;
    line-height: 1;
    margin-bottom: 15px;
}

.mc-sim-badge {
    background-color: #8b5cf6;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Infographic Styles */
.mc-infographic-section {
    margin: 60px 0;
    text-align: center;
}

.mc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.mc-info-card {
    background: #fbfaff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mc-info-icon {
    width: 50px;
    height: 50px;
    background-color: #8b5cf6;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mc-info-card h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.mc-info-card p {
    font-size: 0.7rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (min-width: 768px) {
    .mc-wrapper-sim {
        flex-direction: row;
    }

    .mc-sim-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mc-info-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Pricing Images */
.pricing-img {
    width: 60%;
    margin: 0 auto 15px auto;
    display: block;
}

/* Leads Collection Form */
.leads-collection {
    background-color: #6C5CE7;
    /* Site purple */
    padding: 60px 20px;
    border-top: 1px solid #5a4ad1;
}

.leads-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.leads-container h3 {
    color: #6C5CE7;
    margin-bottom: 10px;
}

.leads-container h3::after {
    background: #6C5CE7;
    margin: 10px auto 0;
}

.leads-container p {
    color: #555;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
    text-align: left;
}

.leads-collection input,
.leads-collection select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.leads-collection input:focus,
.leads-collection select:focus {
    border-color: #6C5CE7;
    outline: none;
}

.email-group {
    flex: 2;
    /* Make email wider */
}

/* Responsive Form */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .pricing-img {
        width: 80%;
    }
}

.hidden {
    display: none;
}

.form-feedback {
    margin-top: 15px;
    font-weight: 600;
    color: #2e7d32;
}

.form-feedback.error {
    color: #c62828;
}