/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #667eea;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

/* Main Container (Split View) */
.main-container {
    height: calc(100vh - 80px);
    display: flex;
    overflow: hidden;
}

/* Split Screen Sections */
.split-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align to top */
    align-items: center; /* Centered horizontally */
    padding: 2rem;
    padding-top: 25vh; /* Increased padding from top of the page */
    position: relative;
}

.guided-shopping {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
}

.traditional-shopping {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 400px;
    min-height: 70px; /* Ensure consistent height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Guided Shopping Form */
.guided-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
}

/* Highlight for the left guided-form */
.guided-shopping .guided-form {
    border: 2px solid #667eea; /* Subtle blue border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow */
}

.step {
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.step.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.back-btn {
    background: none;
    border: none;
    color: #667eea;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 1rem;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.back-btn:hover {
    background: #f8f9fa;
    color: #5a6fd8;
}

.step-title {
    font-size: 1.3rem;
    color: #333;
    flex: 1;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 250px; /* Max height for scrollability */
    overflow-y: auto; /* Enable vertical scrolling */
    padding-right: 10px; /* Space for scrollbar */
}

.option {
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.option:hover {
    background: #e9ecef;
    border-color: #667eea;
}

.option.selected {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.quantity-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 1rem;
}

.price-display {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: none;
}

/* Cart Widget */
.cart-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #667eea;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
    z-index: 1000;
}

.cart-widget:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cart-count {
    background: #ff4757;
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Cart Dropdown */
.cart-dropdown {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.cart-dropdown.open {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    font-weight: bold;
    color: #333;
}

.cart-item {
    padding: 1rem;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total {
    padding: 1rem;
    background: #f8f9fa;
    font-weight: bold;
    text-align: center;
    border-radius: 0 0 15px 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        height: auto;
        overflow-y: auto;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .split-section {
        padding: 1rem;
        padding-top: 10vh; /* Adjust for smaller screens */
    }

    .guided-form {
        max-width: 100%;
    }

    .traditional-shopping {
        justify-content: flex-start; /* Align to start for content flow */
    }

    .product-list {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Product Catalog Page Styles */
.product-catalog-page {
    display: flex; /* Changed from none to flex as it's a dedicated page */
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    min-height: calc(100vh - 80px); /* Fill remaining height */
    overflow-y: auto;
    width: 100%;
}

.catalog-header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.catalog-header h2 {
    font-size: 2.5rem;
    color: #333;
}

.back-to-home-btn {
    background: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}

.back-to-home-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

/* Redesigned Filters and Sort Container */
.filters-sort-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem; /* Increased gap for better spacing */
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 1.5rem 2rem; /* Added padding */
    background: rgba(255, 255, 255, 0.9); /* Slightly opaque background */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-bottom: 2rem; /* Space below the bar */
}

.filter-btn {
    flex-shrink: 0; /* Prevent button from shrinking */
    padding: 0.75rem 1.8rem; /* Larger padding */
    font-size: 1rem;
    border-radius: 10px; /* More rounded */
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.2);
}

/* The previous .sort-group and its direct children styling are now obsolete as sorting moves to modal */
/* .sort-group { ... } */
/* .filters-sort-container label { ... } */
/* .filters-sort-container select { ... } */


.catalog-product-grid {
    display: grid;
    /* Use auto-fit and a fixed min/max width for columns */
    /* This ensures items stay a consistent size and don't stretch */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px; /* Constrain grid width */
    padding-bottom: 2rem; /* Space for cart widget */
    justify-content: center; /* Center items in the grid if not enough to fill a row */
}

.catalog-product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    /* Ensure cards have a consistent base size */
    width: 100%; /* Take full width of its grid cell */
    max-width: 320px; /* Max width to prevent individual cards from becoming too wide */
    margin-left: auto; /* Center card within its grid cell */
    margin-right: auto; /* Center card within its grid cell */
}

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

.catalog-product-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.catalog-product-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.catalog-product-card .product-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #667eea;
    margin-top: 1rem;
}

.catalog-product-card img {
    max-width: 100%;
    height: 150px; /* Fixed height for consistency */
    object-fit: contain; /* Ensure image fits without cropping */
    margin-bottom: 1rem;
    border-radius: 8px;
    background-color: #f0f4f8; /* Light background for images */
    padding: 10px;
}

/* Product Detail View */
.product-detail-view {
    display: flex; /* Changed from none to flex as it's a dedicated page */
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    width: 100%;
    max-width: 900px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.5s ease-out;
}

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

.detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%; /* Ensure header spans full width */
}

.detail-header .back-btn {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    flex-shrink: 0; /* Prevent button from shrinking */
}

.detail-header h3 {
    font-size: 2rem;
    color: #333;
    flex-grow: 1;
    text-align: center;
    margin-left: -50px; /* Counteract back-btn's width to center title */
}

.detail-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure content spans full width */
}

.detail-image-container {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.detail-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #f0f4f8;
    padding: 15px;
}

.detail-info-section {
    flex: 2;
    min-width: 300px;
}

.detail-info-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.detail-info-section .price {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Redesigned Stock Info */
.stock-info-compact {
    background: #f0f4f8;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #444;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.stock-info-compact span strong {
    color: #667eea;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.spec-table th, .spec-table td {
    border: 1px solid #eee;
    padding: 0.8rem;
    text-align: left;
}

.spec-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #444;
    width: 35%;
}

.spec-table td {
    color: #666;
}


/* Redesigned Action Area */
.action-area-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    width: 100%; /* Ensure action area spans full width */
}

.action-area-compact .input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-area-compact label {
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

.action-area-compact select,
.action-area-compact input[type="number"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%20viewBox%3D%220%200%20292.4%20292.4%22%3E%3Cpath%20fill%3D%22%23667eea%22%20d%3D%22M287%20197.3L159.9%2069.1c-3.8-3.8-8.8-5.7-13.8-5.7s-10%201.9-13.8%205.7L5.4%20197.3c-7.5%207.5-7.5%2019.8%200%2027.3s19.8%207.5%2027.3%200l127.3-127.3c3.8-3.8%208.8-5.7%2013.8-5.7s10%201.9%2013.8%205.7l127.3%20127.3c7.5%207.5%2019.8%207.5%2027.3%200S294.5%20204.8%20287%20197.3z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
    padding-right: 2.5em; /* Make space for the arrow */
}
.action-area-compact select:focus,
.action-area-compact input[type="number"]:focus {
    outline: none;
    border-color: #667eea;
}

.action-area-compact .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.similar-items {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    width: 100%; /* Ensure similar items section spans full width */
}

.similar-items h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.similar-item-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.similar-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.similar-item-card h5 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.similar-item-card .price {
    font-weight: bold;
    color: #667eea;
    font-size: 1.1rem;
}

/* Product Category Grid (for initial catalog view) */
.product-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 2rem;
    justify-content: center; /* Center categories */
}

.category-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-height: 200px;
    overflow: hidden;
    width: 100%; /* Take full width of its grid cell */
    max-width: 320px; /* Max width for consistency */
    margin-left: auto; /* Center card within its grid cell */
    margin-right: auto; /* Center card within its grid cell */
}

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

.category-card img {
    width: 100%;
    height: 100px; /* Fixed height for the image (approx 50% of min-height) */
    object-fit: cover;
    margin-bottom: 0;
    border-radius: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.category-card .category-content {
    padding: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.category-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #666;
    font-size: 1rem;
}

/* Filter Modal Styles */
.filter-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000; /* On top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.filter-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 600px;
    animation: zoomIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: #333;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal-btn:hover {
    color: #666;
}

.modal-body {
    flex-grow: 1;
    padding-right: 10px; /* For scrollbar space */
}

.filter-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #eee;
}
.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h4 {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1rem;
}

.filter-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem; /* Increased gap for more spacing */
}

.filter-option-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space between label and arrow */
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent; /* Changed to 2px for selected state */
    min-width: 140px; /* Ensure enough width for text and arrow */
    flex-grow: 1; /* Allow them to grow within the grid */
}

.filter-option-checkbox:hover {
    background: #e9ecef;
    border-color: #667eea;
}

.filter-option-checkbox.selected {
    background: #e0e7ff; /* Lighter blue background for selected state */
    border-color: #667eea; /* Blue border for selected state */
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2); /* Subtle shadow */
}

.filter-option-checkbox input[type="checkbox"],
.filter-option-checkbox input[type="radio"] {
    /* Hide the default checkbox/radio button visually, as the div will handle selection */
    display: none;
}

.filter-option-checkbox label {
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow if any */
    text-overflow: ellipsis; /* Add ellipsis if text overflows */
    flex-grow: 1; /* Allow label to take available space */
    pointer-events: none; /* Crucial: Ensures clicks on label pass through to parent div */
}

.sort-arrow-button {
    font-size: 1.2rem; /* Larger arrow */
    color: #667eea;
    cursor: pointer;
    padding: 0.2rem 0.4rem; /* Make it a clickable area */
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0; /* Prevent arrow from shrinking */
    display: inline-flex; /* For consistent sizing */
    align-items: center;
    justify-content: center;
    width: 25px; /* Fixed width for the button */
    height: 25px; /* Fixed height for the button */
}

.sort-arrow-button:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #5a6fd8;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Back to Categories button */
.back-to-categories-btn {
    background: none;
    border: none;
    color: #667eea;
    font-size: 1.1rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1rem; /* Space below button */
    align-self: flex-start; /* Align to the left */
}

.back-to-categories-btn:hover {
    color: #5a6fd8;
}

/* Hide specific filter sections when not needed */
.filter-section.hidden {
    display: none;
}

/* New Page Styles */
.info-page {
    display: flex; /* Changed from none to flex as it's a dedicated page */
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    min-height: calc(100vh - 80px);
    overflow-y: auto;
    width: 100%;
    text-align: center;
}

.info-page h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.info-page p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-page .contact-options {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    width: 100%;
}

.info-page .contact-options a {
    background: #667eea;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}

.info-page .contact-options a:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}
.info-page ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    text-align: left;
}
.info-page ul li {
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: #444;
}
