/* ... (Existing styles) ... */

/* New Form Styles */
.label-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    margin-top: -0.25rem;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sub-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem !important;
}

/* Radio Group Styles */
/* Radio Group Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-custom {
    display: inline-block;
    width: 22px;
    height: 22px;
    min-width: 22px;
    /* Prevent squishing */
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    background-color: var(--white);
}

.radio-option:hover .radio-custom {
    border-color: var(--primary-color);
}

.radio-option input[type="radio"]:checked+.radio-custom {
    border-color: #f97316;
    background-color: #fff;
}

.radio-option input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #f97316;
    border-radius: 50%;
}

.radio-label {
    color: var(--text-main);
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .dimensions-grid {
        grid-template-columns: 1fr;
    }
}

/* ... (Keep existing styles below if needed, or append this to style.css) ... */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-green: #22c55e;
    --accent-red: #ef4444;
    --accent-yellow: #eab308;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

/* Header */
.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn-login {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: var(--primary-dark);
}

/* User Menu & Actions */
.user-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.user-welcome {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-user {
    padding: 0.45rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    cursor: pointer;
}

.btn-user:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.btn-admin {
    background-color: #1e293b;
}

.btn-account {
    background-color: var(--primary-color);
}

.btn-logout {
    background-color: var(--accent-red);
}

/* Adjust header for logged in state */
@media (min-width: 992px) {
    .user-menu {
        flex-direction: row;
        align-items: center;
    }

    .user-welcome {
        margin-right: 0.5rem;
    }
}


/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.badge-pill {
    display: inline-block;
    background: #dbeafe;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.icon-box-sm {
    width: 24px;
    height: 24px;
    background: #dbeafe;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.23);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    /* box-shadow: var(--shadow-lg); */
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -20px;
    color: var(--primary-color);
}

.card-2 {
    bottom: 20%;
    right: -20px;
    color: var(--accent-green);
    animation-delay: 1.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Calculator Wrapper Section */
.calculator-wrapper-section {
    padding: 4rem 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

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

.calculator-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

/* Calculator Form Styles */
.input-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.2s;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-calculate {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-calculate:hover {
    opacity: 0.9;
}

/* Calculator Info Column */
.calc-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.info-card.blue-bg {
    background: #f0f9ff;
}

.info-card.pink-bg {
    background: #fdf2f8;
}

.info-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-badge {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.benefits-list li i {
    color: #db2777;
    /* Pinkish for benefits */
}

/* Result Section Styles (Adapted) */
.result-section {
    animation: fadeIn 0.5s ease-out;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.result-header-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.result-header-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
}

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

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.calc-breakdown .breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.final-result-box {
    margin-top: 1.5rem;
    background: #f0fdf4;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid #bbf7d0;
}

.result-row.highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.green-text {
    color: var(--accent-green);
}

.big {
    font-size: 1.25rem;
    font-weight: 700;
}

.action-buttons {
    margin-top: 1.5rem;
}

.btn-action {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
}

.btn-pdf {
    background-color: #e11d48;
    color: var(--white);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon.blue {
    background: #dbeafe;
    color: var(--primary-color);
}

.feature-icon.green {
    background: #dcfce7;
    color: var(--accent-green);
}

.feature-icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.feature-icon.red {
    background: #ffe4e6;
    color: var(--accent-red);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

.cta-container {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.125rem;
}

.btn-cta-white {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-cta-white:hover {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff7ed;
    border-radius: var(--radius-md);
}

.value-icon {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.value-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: #0f172a;
    color: var(--white);
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.stats-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stats-header p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.stats-list-check {
    list-style: none;
}

.stats-list-check li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
}

.stats-list-check li i {
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card-blue {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-card-blue h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 0.5rem;
}

.stat-card-blue p {
    color: #94a3b8;
    font-weight: 500;
}

/* Footer (Existing) */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Utilities */
.hidden {
    display: none !important;
}

.active {
    display: block;
}

.text-primary {
    color: var(--primary-color);
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .calculator-grid-layout {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* --- New Result Section Styles --- */

/* Result Header */
.result-header-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.result-header-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-header-main .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.result-header-main h1 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.result-header-main p {
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

.result-header-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.header-stat-item {
    display: flex;
    flex-direction: column;
}

.header-stat-item .stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-stat-item .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.tab-btn.active {
    color: var(--primary-color);
    background: var(--white);
    border-bottom: 3px solid var(--primary-color);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tab-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tab-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Detail Cards */
.detail-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.detail-card.light-blue {
    background: #eff6ff;
    border-color: #dbeafe;
}

.detail-card.light-green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.detail-card.light-yellow {
    background: #fefce8;
    border-color: #fef08a;
}

.detail-card.light-red {
    background: #fef2f2;
    border-color: #fecaca;
}

.detail-card.blue-solid {
    background: var(--primary-color);
    color: white;
}

.detail-card.green-solid {
    background: var(--accent-green);
    color: white;
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.detail-card.blue-solid .card-header-row,
.detail-card.green-solid .card-header-row {
    color: white;
}

.calc-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.calc-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.calc-val {
    font-weight: 600;
    color: var(--text-dark);
}

.result-final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.final-val-sm {
    font-weight: 600;
    color: var(--text-dark);
}

.final-val-lg {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-green);
}

.small-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Comparison Grid */
.comparison-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comp-card-new {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.comp-card-new.conventional {
    border-top: 4px solid var(--accent-red);
}

.comp-card-new.inverter {
    border-top: 4px solid var(--accent-green);
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.comp-header {
    padding: 1.5rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.comp-icon.red {
    background: #ffe4e6;
    color: var(--accent-red);
}

.comp-icon.green {
    background: #dcfce7;
    color: var(--accent-green);
}

.comp-body {
    padding: 1.5rem;
}

.comp-stat {
    margin-bottom: 1rem;
}

.comp-stat label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.comp-stat strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.comp-stat strong.money {
    font-family: monospace;
    font-size: 1.2rem;
}

.red-text {
    color: var(--accent-red);
}

.green-text {
    color: var(--accent-green);
}

.savings-card-blue {
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.savings-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

/* Guide Steps */
.guide-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.guide-step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid transparent;
}

.guide-step-item.light-blue {
    border-left-color: var(--primary-color);
    background: #eff6ff;
}

.guide-step-item.light-green {
    border-left-color: var(--accent-green);
    background: #f0fdf4;
}

.guide-step-item.light-purple {
    border-left-color: #9333ea;
    background: #f3e8ff;
}

.guide-step-item.light-yellow {
    border-left-color: var(--accent-yellow);
    background: #fefce8;
}

.guide-step-item.light-red {
    border-left-color: var(--accent-red);
    background: #fef2f2;
}

.step-num {
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.2;
    line-height: 1;
}

.step-txt h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-txt p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.brand-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: transform 0.2s;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.brand-header h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.brand-header i {
    color: var(--accent-yellow);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.spec-row span {
    color: var(--text-light);
}

.spec-row strong {
    color: var(--text-dark);
}

/* Lists */
.check-list,
.simple-list {
    margin: 0;
    padding-left: 1.2rem;
}

.check-list li {
    list-style: none;
    position: relative;
    margin-bottom: 0.5rem;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -1.5rem;
    color: var(--accent-green);
}

.white-text .check-list li::before {
    color: white;
}

.white-text {
    color: white;
}

/* Action Buttons */
.action-buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-save-full {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-pdf-full {
    background: var(--accent-red);
    color: var(--white);
}

/* Responsive Adjustments for New Section */
@media (max-width: 768px) {
    .result-header-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid-new {
        grid-template-columns: 1fr;
    }

    .savings-card-blue {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .action-buttons-row {
        grid-template-columns: 1fr;
    }
}

/* Detailed Benefits List */
.benefits-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item-detailed {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon-circle {
    width: 32px;
    height: 32px;
    background: #db2777;
    /* Pinkish color matching the theme */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item-detailed h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.benefit-item-detailed p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

/* Simplified Footer */
.main-footer-simple {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 0;
}

.footer-simple-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    margin: 0;
    font-size: 0.95rem;
    color: #94a3b8;
}

.social-icon-lg {
    font-size: 1.75rem;
    color: var(--white);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.social-icon-lg:hover {
    color: #E1306C;
    /* Instagram Color */
}

@media (max-width: 600px) {
    .footer-simple-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* FAQ Page Styles */
.faq-hero {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
    margin-bottom: 2rem;
}

.faq-hero h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.faq-hero p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.faq-content-section {
    padding-bottom: 5rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-item details {
    width: 100%;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item details[open] summary .icon {
    transform: rotate(180deg);
}

.faq-item details[open] summary {
    border-bottom: 1px solid var(--border-color);
    background-color: #f8fafc;
}

.faq-answer {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    background-color: var(--white);
    animation: fadeIn 0.3s ease-out;
}

.active-link {
    color: var(--primary-color) !important;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    min-height: 80vh;
}

.page-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 800;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.contact-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-form-card textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    resize: vertical;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit-contact {
    width: 100%;
    padding: 1rem;
    background-color: #4f46e5;
    /* Indigo/Blue similar to design */
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit-contact:hover {
    background-color: #4338ca;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.info-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.blue-light {
    background-color: #eff6ff;
    color: #3b82f6;
}

.info-details h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.info-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.blue-bg-card {
    background-color: #f0f9ff;
    border: none;
}

.full-width {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Brands Section New Layout */
.ai-disclaimer-box {
    background-color: #f0fdf4;
    /* Light green/blue mix */
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #166534;
}

.ai-disclaimer-box i {
    font-size: 1.5rem;
}

.ai-disclaimer-box p {
    margin: 0;
    font-size: 0.9rem;
}

.brands-layout-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.brands-list-col h4,
.brands-tips-col h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.check-list-green {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list-green li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.check-list-green li::before {
    content: "\f058";
    /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #22c55e;
    /* Green */
    font-size: 1.25rem;
}

.tips-list-bullet {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tips-list-bullet li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.5;
}

.tips-list-bullet li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

@media (max-width: 768px) {
    .brands-layout-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile Optimization for Results Page */
@media (max-width: 600px) {
    .result-header-card {
        padding: 1.5rem;
    }

    .result-header-main {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .result-header-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .header-stat-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.75rem;
        border-radius: var(--radius-md);
        text-align: center;
    }

    /* Scrollable Tabs */
    .tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    /* Comparison Cards Stack */
    .comparison-grid-new {
        flex-direction: column;
    }

    .comp-card-new {
        width: 100%;
    }

    /* Premium Lock Card */
    .premium-locked-container {
        padding: 1.5rem;
    }

    .premium-cta-btn {
        width: 100%;
        font-size: 1rem;
        padding: 1rem;
    }

    /* Guide Steps */
    .guide-steps-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Brands Columns */
    .brands-layout-cols {
        grid-template-columns: 1fr;
    }

    /* Action Buttons */
    .action-buttons-row {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-action {
        width: 100%;
    }
}

/* Footer Links & Alignment */
.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .footer-right {
        justify-content: center;
        margin-top: 10px;
    }
}

/* Mobile Menu Toggle */
@media (min-width: 992px) {
    .main-nav {
        display: flex;
        gap: 2rem;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }

    #auth-buttons {
        margin-left: 1rem;
    }
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

@media (max-width: 992px) {
    .main-header {
        padding: 0.5rem 0;
        /* Reduced padding */
    }

    .main-header .header-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0 1.25rem;
    }

    .logo {
        flex: 0 1 auto;
    }

    .logo img {
        height: 40px !important;
        width: auto;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        cursor: pointer;
        color: var(--secondary-color);
        background: #f1f5f9;
        border-radius: 8px;
        z-index: 1001;
        transition: background 0.2s;
    }

    .menu-toggle:active {
        background: #e2e8f0;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 1.25rem;
        border-bottom: 2px solid var(--primary-color);
        box-shadow: var(--shadow-lg);
        gap: 0.75rem;
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
    }

    #auth-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 0.5rem;
    }

    #auth-buttons .btn-login,
    #auth-buttons .btn-user,
    #auth-buttons .btn-account,
    #auth-buttons .btn-logout,
    #auth-buttons .btn-admin {
        width: 100%;
        padding: 0.8rem;
        justify-content: center;
        font-size: 1rem;
        color: var(--white) !important;
        /* Force white text */
        border-bottom: none;
        /* Remove underline/border from button */
    }

    .user-welcome {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .user-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
}

/* Global Overflow Fix */
html,
body {
    overflow-x: hidden;
}

/* Responsive Grids & Sections */
@media (max-width: 768px) {
    .hero-section {
        padding: 2.5rem 0;
        /* Reduced padding from 4rem */
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-stats-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .calculator-wrapper-section {
        padding: 2.5rem 0;
    }

    .calculator-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row,
    .dimensions-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .card-1 {
        left: 0;
        top: 10%;
    }

    .card-2 {
        right: 0;
        bottom: 10%;
    }

    /* Features Section */
    .features-section {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    /* CTA Section */
    .cta-section {
        padding: 2rem 0;
    }

    .cta-container {
        padding: 3rem 1.5rem;
        margin: 0 1rem;
        border-radius: var(--radius-lg);
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* About Section */
    .about-section {
        padding: 3rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .values-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .value-item {
        padding: 1.5rem;
    }

    /* Stats Section */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card-blue {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .input-card {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Professionals Promo Section */
.pro-promo-section {
    padding: 4rem 0 2rem;
    background-color: var(--white);
}

.pro-promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem 3rem;
    border-radius: 100px;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
    border: 1px solid #bae6fd;
    max-width: fit-content;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.pro-promo-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
}

.pro-icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    animation: pro-bounce 2s infinite ease-in-out;
    flex-shrink: 0;
}

.pro-text {
    font-size: 1.15rem;
    color: #1e3a8a;
    font-weight: 600;
    line-height: 1.2;
}

.pro-text a {
    color: var(--primary-color);
    text-decoration: none;
    background: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-left: 0.75rem;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid #e2e8f0;
}

.pro-text a:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateX(3px);
    border-color: var(--primary-color);
}

@keyframes pro-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 992px) {
    .pro-promo-content {
        flex-direction: column;
        border-radius: 30px;
        padding: 2rem;
        gap: 1.5rem;
        max-width: 100%;
    }

    .pro-text {
        font-size: 1.1rem;
    }

    .pro-text a {
        display: block;
        margin-left: 0;
        margin-top: 1rem;
    }
}