/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
}

.search-btn {
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background: #0056b3;
}

/* Main content */
.main {
    min-height: calc(100vh - 140px);
    padding: 2rem 0;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #4ad796 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 0.5rem;
}

.hero-search-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
}

.hero-search-btn {
    padding: 1rem 2rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.2s;
}

.hero-search-btn:hover {
    background: #218838;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
}

.hero-feature-tick {
    background: #28a745;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.hero-feature-text {
    font-weight: 500;
    opacity: 0.95;
}

/* Categories */
.categories {
    margin-bottom: 3rem;
}

.categories h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.category-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.category-card h3 {
    font-size: 1.1rem;
    text-align: center;
}

/* Products */
.featured, .best-deals, .trending, .new-arrivals {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.search-header h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

/* Removed colored borders - badges are sufficient for differentiation */

.deal-badge, .trending-badge, .new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-badge {
    background: #28a745;
    color: white;
}

.trending-badge {
    background: #ff6b35;
    color: white;
}

.new-badge {
    background: #007bff;
    color: white;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.product-info {
    padding: 1rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-brand {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: bold;
    color: #28a745;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.product-shops {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Search filters */
.search-filters {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-form {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
}

.filter-group select {
    padding: 0.5rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Product detail */
.product-detail {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    align-items: start;
}

.product-image-section {
    display: flex;
    justify-content: center;
}

.product-detail-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s;
}

.product-detail-image:hover {
    transform: scale(1.02);
}

.product-detail-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border-radius: 8px;
}

.product-header {
    margin-bottom: 1.5rem;
}

.product-detail-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-detail-brand {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-meta {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.product-meta p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.product-meta p:last-child {
    margin-bottom: 0;
}

.product-description {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
}

.description-container {
    max-width: 800px;
    width: 100%;
}

.product-description h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-description p {
    line-height: 1.6;
    color: #555;
}

/* Price comparison */
.price-comparison h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.shop-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.shop-card:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0,123,255,0.1);
}

.shop-card.lowest-price-shop {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9, #e8f5e8);
}

.lowest-price-badge {
    position: absolute;
    top: -10px;
    left: 1rem;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.shop-prices {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shop-total-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #28a745;
}

.shop-product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff;
}

.price-with-sale {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shop-original-price {
    color: #dc3545;
    font-size: 1rem;
    text-decoration: line-through;
    font-weight: 400;
}

.shop-sale-price {
    color: #28a745;
    font-weight: bold;
    font-size: 1.3rem;
}

.shop-buy-btn {
    padding: 0.75rem 1.5rem;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.shop-buy-btn:hover {
    background: #218838;
}

/* No results */
.no-results, .no-shops {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-results h2 {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #343a40;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-container {
        margin: 0;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-search {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-detail-title {
        font-size: 1.5rem;
    }
    
    .shop-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: center;
    }
    
    .shop-buy-btn {
        align-self: stretch;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .image-modal-content {
        width: 95%;
    }
    
    .description-container {
        padding: 0 1rem;
    }
    
    .shop-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .filter-form {
        flex-direction: column;
        align-items: flex-start;
    }
}/* R
elated products */
.related-products {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
}

.related-products h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.related-product-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.related-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-product-image-placeholder {
    width: 100%;
    height: 150px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.8rem;
}

.related-product-info {
    padding: 1rem;
}

.related-product-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-brand {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.related-product-price {
    font-weight: bold;
    color: #28a745;
    font-size: 0.9rem;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    cursor: pointer;
}

.image-modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.image-modal-close:hover {
    color: #ccc;
}
* Related products */
.related-products {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
}

.related-products h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-product-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e9ecef;
}

.related-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.related-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-product-image-placeholder {
    width: 100%;
    height: 180px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.related-product-info {
    padding: 1rem;
}

.related-product-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
}

.related-product-brand {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.related-product-price {
    font-weight: bold;
    color: #28a745;
    font-size: 1rem;
}/* Exp
and shops functionality */
.expand-shops-container {
    text-align: center;
    margin-top: 1rem;
}

.expand-shops-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.expand-shops-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.expand-shops-btn.expanded {
    background: #6c757d;
}

.expand-shops-btn.expanded:hover {
    background: #545b62;
}

.collapsible-shop {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* Terms p
age */
.terms-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.terms-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section h2 {
    font-size: 1.3rem;
    color: #007bff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.terms-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #555;
}

@media (max-width: 768px) {
    .terms-page {
        padding: 1rem;
        margin: 1rem;
    }
    
    .terms-page h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
}/*
 Contact page */
.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-section {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.contact-icon {
    color: #007bff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.email-link {
    margin: 2rem 0;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #007bff;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.2s;
}

.contact-email:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.response-time {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.help-topics {
    list-style: none;
    padding: 0;
}

.help-topics li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.help-topics li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    color: #856404;
}

.contact-note p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 1rem;
    }
    
    .contact-page h1 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-email {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
}/* FAQ
 page */
.faq-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0,123,255,0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    background: #e3f2fd;
    border-bottom: 1px solid #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    min-width: 24px;
    text-align: center;
    transition: transform 0.2s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    background: #f8f9fa;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #007bff;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .faq-page {
        padding: 1rem;
    }
    
    .faq-page h1 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
}/
* Section footer with See more button */
.section-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.see-more-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
    border: 2px solid #007bff;
}

.see-more-btn:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

@media (max-width: 768px) {
    .see-more-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}/* Section
 footer with See more button */
.section-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
}

.see-more-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
    border: 2px solid #007bff;
}

.see-more-btn:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

@media (max-width: 768px) {
    .see-more-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}