/* assets/css/frontpage_style.css */

/* Återanvändning av färgpalett och grundvariabler från customer_style.css för konsistens */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --dark-gray: #212529;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    --border-radius: 0.5rem;
}

/* ---- Mjuk scrollning och animations-fix ---- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans-serif);
    background-color: #fff;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden; /* Förhindrar horisontell scroll vid animationer */
}

/* Knappstilar */
.button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* ---- Header ---- */
.frontpage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.frontpage-header .logo-img {
    max-width: 200px;
    height: auto;
}

.frontpage-header nav a {
    margin: 0 0.75rem;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
}

.frontpage-header nav a.button {
    color: white;
}


/* ---- Generella Sektionsstilar ---- */
.section {
    padding: 6rem 5%;
    text-align: center;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.section .subtitle {
    font-size: 1.15rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* ---- Hero Section (Korrekt version) ---- */
#hero {
    background-color: var(--light-gray);
    padding: 6rem 5%;
    overflow-x: hidden; /* Förhindrar horisontell scroll under animation */
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    
}


/* ---- Video Showcase Sektion ---- */
#video-showcase {
    background-color: #fff;
}
.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: var(--dark-gray);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/tumbyoutube.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: var(--box-shadow);
}
.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid var(--primary-color);
    margin-left: 5px;
}
.play-button:hover {
    transform: scale(1.1);
    background-color: white;
}

/* ---- Features Section ---- */
#features {
    background-color: var(--light-gray);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.feature-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ---- Material / Benefits Section ---- */
#material {
    background-color: #fff;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.benefit-card {
    padding: 2rem;
}

.benefit-card .benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.benefit-card p {
    color: var(--secondary-color);
    margin: 0;
}


/* ---- Prissektion ---- */
#pricing {
    background-color: var(--light-gray);
}

.price-table {
    margin-bottom: 4rem;
}

.price-table-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.pricing-card h4 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.pricing-card .price-display {
    margin-bottom: 1.5rem;
}

.pricing-card .price-main .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card .price-main .price-unit {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-left: 0.5rem;
}

.pricing-card .price-vat-info {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.price-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.price-features-list li {
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}


.pricing-card .button {
    width: 100%;
    box-sizing: border-box;
    margin-top: 1.5rem;
}

.pricing-footer-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #e9ecef;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-footer-note p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-gray);
}


/* ---- Sektion: DTF vs Vinyl ---- */
#dtf-vs-vinyl {
    background-color: var(--light-gray);
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--dark-gray);
    color: white;
    font-size: 1.1rem;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #fff;
}

.comparison-table .advantage {
    color: #198754;
    font-weight: 500;
}

.comparison-table .disadvantage {
    color: #6c757d;
}

/* ---- Sample Pack Sektion ---- */
#sample-pack {
    background-color: var(--dark-gray);
    color: #fff;
}
#sample-pack h2 {
    color: #fff;
}
#sample-pack p {
    color: rgba(255,255,255,0.8);
}
.sample-pack-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
    align-items: center;
}
.sample-pack-image img {
    width: 100%;
    border-radius: var(--border-radius);
}
.sample-pack-text .button {
    margin-top: 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
}


/* ---- Om Oss Sektion ---- */
#about {
    background-color: #fff;
}
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    text-align: left;
    align-items: center;
}
.about-text h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}


/* ---- FAQ Sektion ---- */
#faq {
    background-color: var(--light-gray);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.7;
}


/* ---- Omdömensektion ---- */
#testimonials {
    background-color: #fff;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.testimonial-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.testimonial-card blockquote {
    margin: 0 0 1rem 0;
    font-style: italic;
    color: var(--dark-gray);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.testimonial-card cite {
    font-weight: 600;
    font-style: normal;
    color: var(--secondary-color);
}

/* ---- Gallerisektion ---- */
#gallery {
    background-color: var(--light-gray);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

/* ---- Kontaktsektion (Ny Design) ---- */
#contact {
    background-color: var(--dark-gray);
    color: #fff;
}
#contact .section-container {
    max-width: 1000px;
}
#contact h2 {
    color: #fff;
}
#contact .subtitle {
    color: rgba(255,255,255,0.7);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background-color: #343a40; /* Något ljusare än sektionsbakgrunden */
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: left;
}
.contact-info h2 {
    font-size: 1.8rem;
    margin-top: 0;
}
.contact-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}
.contact-details {
    margin-top: 2rem;
}
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-detail-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.contact-detail-item svg {
    stroke: var(--primary-color);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #495057;
    border-radius: 0.3rem;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: var(--font-family-sans-serif);
    background-color: #495057;
    color: #fff;
    transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}
.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.contact-form .button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}
/* Filuppladdningsfält */
.file-input-hidden {
    display: none;
}
.file-input-label {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: background-color 0.2s;
}
.file-input-label:hover {
    background-color: #5a6268;
}
.file-name-display {
    margin-left: 10px;
    font-style: italic;
    color: rgba(255,255,255,0.6);
}

/* Meddelanden för formuläret */
.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
}
.form-message.success {
    background-color: #d1e7dd; color: #0f5132; border-color: #badbcc;
}
.form-message.error {
    background-color: #f8d7da; color: #842029; border-color: #f5c2c7;
}


/* ---- CTA Sektion ---- */
#cta {
    background-color: var(--primary-color);
    color: white;
}
#cta h2 {
    color: white;
}
#cta .subtitle {
    color: rgba(255, 255, 255, 0.85);
}
#cta .button {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 15px 35px;
}
#cta .button:hover {
    background-color: #f0f0f0;
}

/* ---- Video Modal ---- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}
.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ---- Footer ---- */
.frontpage-footer {
    padding: 4rem 5% 2rem; /* Mer utrymme upptill */
    background-color: var(--dark-gray);
    color: var(--light-gray);
    text-align: left; /* Ändra från center till left för kolumnerna */
}

.footer-container {
    display: grid;
    /* Skapar responsiva kolumner. På små skärmar blir det en kolumn. */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.footer-column.about p {
    color: #adb5bd; /* Lite mörkare än vanlig text för att sticka ut mindre */
    line-height: 1.7;
}

.footer-column.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column.links li {
    margin-bottom: 0.8rem;
}

.footer-column.links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s ease-in-out, padding-left 0.2s ease-in-out;
}

.footer-column.links a:hover {
    color: #fff;
    padding-left: 5px; /* Skapar en liten indragning vid hover */
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #495057; /* En mörkgrå bakgrund */
    transition: background-color 0.2s, transform 0.2s;
}

.social-icons a:hover {
    background-color: var(--primary-color); /* Använder din primära färg vid hover */
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    stroke: #fff; /* För ikoner som använder stroke istället för fill */
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #495057; /* Separationslinje */
}

.footer-bottom p {
    margin: 0;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* ---- Cookie Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background-color: var(--dark-gray);
    color: #fff;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    transition: bottom 0.5s ease-in-out;
}
.cookie-banner.show {
    bottom: 0;
}
.cookie-banner p {
    margin: 0;
    color: rgba(255,255,255,0.8);
}
.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}
.cookie-banner .button {
    background-color: var(--primary-color);
    padding: 10px 25px;
    flex-shrink: 0;
}

/* ---- Till Toppen Knapp ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 2500;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top svg {
    width: 24px;
    height: 24px;
}


/* ---- Responsivitet ---- */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}
@media (max-width: 992px) {
    .feature-cards,
    .about-content,
    .sample-pack-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
     .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    .about-image,
    .sample-pack-image {
        margin-top: 2rem;
    }
}
@media (max-width: 768px) {
    .frontpage-header {
        flex-direction: column;
        padding: 1rem;
    }
    .frontpage-header nav {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }
    .frontpage-header nav a {
        margin: 0;
    }

    .section h2 {
        font-size: 2rem;
    }
    .pricing-grid,
    .form-group-grid {
        grid-template-columns: 1fr;
    }
    .cookie-banner {
        flex-direction: column;
        padding: 1.5rem;
    }

    /* Korrekta regler för Hero-sektionen på mobilen */
    #hero {
        padding: 4rem 5%;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

.price-calculator-container {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin: 2rem auto 3rem auto;
    max-width: 700px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.price-calculator-container h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #343a40;
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calculator-controls .form-group {
    display: flex;
    flex-direction: column;
}

.calculator-controls label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.calculator-controls select,
.calculator-controls input[type="number"] {
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
}

.calculator-controls select:focus,
.calculator-controls input[type="number"]:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.slider-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-group input[type="range"] {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #dee2e6;
    border-radius: 5px;
    outline: none;
    opacity: 0.9;
    transition: opacity .2s;
}
.slider-group input[type="range"]:hover {
    opacity: 1;
}
.slider-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #0d6efd;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
}
.slider-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #0d6efd;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
}

.slider-group input[type="number"] {
    width: 80px;
    text-align: center;
}
.slider-group span {
    font-weight: 600;
    color: #495057;
}

/* Firefox - ta bort pilar från nummerinput */
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator-result {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
}

.calculator-result .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}
.calculator-result .result-item:not(:last-child) {
    border-bottom: 1px solid #f1f3f5;
}

.result-item .label {
    font-size: 1rem;
    color: #495057;
}

.result-item .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
}
.result-item .value small {
    font-weight: 400;
    font-size: 0.8rem;
    color: #6c757d;
}

.result-item.total .value {
    font-size: 1.75rem;
    color: #198754;
}

.calculator-result .vat-info {
    text-align: right;
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.calculator-actions {
    margin-top: 2rem;
    text-align: center;
}
.calculator-actions .button {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
}


@media (max-width: 768px) {
    .price-calculator-container {
        padding: 1.5rem;
    }
    .price-calculator-container h3 {
        font-size: 1.5rem;
    }
}
