/* Unsecured Business Loans Page Styles */

/* Hero Section - Based on About Us Hero */
.about-hero-section {
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 50%, #0a6b73 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.02"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.02"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: #ffd700;
    font-size: 1rem;
}

/* Hero Content */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
    color: #ffffff;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #17adb8;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-btn.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    margin-left: 100px;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-img {
    transform: scale(1.05);
}

/* Service Highlights */
.service-highlights {
    position: absolute;
    bottom: -60px;
    left: -60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out forwards;
}

.highlight-card:nth-child(2) {
    animation-delay: 0.2s;
}

.highlight-card:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.card-content h4 {
    color: #17adb8;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.loan-amount-highlight {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #17adb8 !important;
    line-height: 1.1;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
}

.card-content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: #ffffff;
}

.content-section .container {
    max-width: 1200px;
    margin-left: 125px;
    margin-right: auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #17adb8;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    padding-right: 40px;
}

.content-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #17adb8;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.content-text ul {
    list-style: none;
    padding: 0;
}

.content-text ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.content-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #17adb8;
    font-weight: bold;
    font-size: 1.1rem;
}

.content-text strong {
    color: #333;
    font-weight: 600;
}

.content-image {
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* New Loan Definition Styles */
.loan-definition {
    margin-bottom: 80px;
}

.definition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.definition-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.definition-text p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: #17adb8;
}

.definition-image {
    text-align: center;
}

.definition-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.definition-image img:hover {
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(23, 173, 184, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 2px solid #17adb8;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(23, 173, 184, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #17adb8;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #17adb8;
}

.benefits-section .section-header h2 {
    color: white;
}

.benefits-section .section-header p {
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(23, 173, 184, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 2px solid #17adb8;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(23, 173, 184, 0.3);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #17adb8;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Eligibility Section */
.eligibility-section {
    padding: 100px 0;
    background: #ffffff;
}

.eligibility-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.eligibility-requirements {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #17adb8;
}

.eligibility-requirements h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17adb8;
    margin-bottom: 20px;
}

.eligibility-requirements ul {
    list-style: none;
    padding: 0;
}

.eligibility-requirements ul li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.step {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(23, 173, 184, 0.1);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 2px solid #17adb8;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #17adb8, #139aa3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(23, 173, 184, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #17adb8;
    margin-bottom: 15px;
    margin-top: 20px;
}

.step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Documents Section */
.documents-section {
    padding: 100px 0;
    background: #ffffff;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.document-category {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #17adb8;
}

.document-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17adb8;
    margin-bottom: 20px;
}

.document-category ul {
    list-style: none;
    padding: 0;
}

.document-category ul li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #17adb8;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(23, 173, 184, 0.3);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #17adb8;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #17adb8;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 30px 25px 95px;
    color: #666;
    line-height: 1.6;
    display: none;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    margin: 0;
}

/* Remove old highlight styles */
.faq-item.highlight .faq-question {
    background: none;
}

.faq-item.highlight .faq-question h3 {
    color: #17adb8;
}

.faq-item.highlight .faq-question i {
    color: #17adb8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
        padding-top: 0;
        padding-bottom: 25px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin-left: 125px;
    margin-right: auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-section .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-container {
        width: 300px;
        height: 300px;
        margin-left: 0;
    }

    .service-highlights {
        position: static;
        margin-top: 30px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-text {
        padding-right: 0;
    }

    .benefits-grid,
    .eligibility-content,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    /* Responsive for new design */
    .definition-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Additional mobile styles for hero section */
    .about-hero-section {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.1rem;
        min-height: 56px;
    }

    .hero-visual {
        order: 0; /* Content comes first */
        justify-content: flex-start; /* Align image to left */
    }

    .service-highlights {
        position: static;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 30px;
        gap: 15px;
        align-items: flex-start;
    }

    .highlight-card {
        width: 100%;
        max-width: 300px;
        padding: 18px;
        transition: all 0.3s ease;
    }

    .highlight-card:hover {
        transform: translateY(-5px);
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
        transform: none;
        margin: 0;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
}

/* Tablet responsive styles */
@media (max-width: 1024px) {
    .about-hero-section .container {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .service-highlights {
        left: -40px;
        bottom: -40px;
    }

    .highlight-card {
        padding: 18px;
    }

    .hero-image-container {
        width: 400px;
        height: 400px;
        margin-left: 50px;
    }
}

/* Small mobile responsive styles */
@media (max-width: 480px) {
    .about-hero-section {
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        gap: 12px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .service-highlights {
        gap: 10px;
    }

    .highlight-card {
        min-width: 150px;
        padding: 15px;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
    }
}/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calculator-content h2 {
    font-size: 2.5rem;
    color: #17adb8;
    margin-bottom: 15px;
    font-weight: 700;
}

.calculator-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #17adb8;
}

.calculate-btn {
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 173, 184, 0.3);
}

.calculator-results {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-card {
    text-align: center;
    margin-bottom: 30px;
}

.result-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.emi-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #17adb8;
}

.result-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.detail-item {
    text-align: center;
    flex: 1;
}

.detail-item span:first-child {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.detail-item span:last-child {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Calculator */
@media (max-width: 768px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


