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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Navigation Header */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #333;
}

.nav-logo-image {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.nav-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
}

.nav-link:last-child {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.nav-link:last-child:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.nav-link:nth-last-child(2) {
    background: #1e3a8a;
    color: white;
}

.nav-link:nth-last-child(2):hover {
    background: #0f172a;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-demo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.basil-guy-image {
    height: 100px;
    width: auto;
    flex-shrink: 0;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #fff;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button.primary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
}

.pricing {
    font-size: 1rem;
    opacity: 0.8;
}

/* Demo Container in Hero */
#demo-container {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 12px;
    height: 420px;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#demo-container:not(.loading) {
    display: block;
    padding: 0;
    background: transparent;
    border: none;
    height: auto;
}

#demo-container.loading {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    flex-direction: column;
    gap: 1rem;
}

.loading-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

#controls {
    text-align: center;
}

#controls button {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    margin: 0 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#controls button:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

/* CTA Section */
#cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    max-width: 400px;
}

/* Chat Interface */
.demo-title {
    height: 420px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: white;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 800px;
}

.chat-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 420px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    position: relative;
}

.chat-header {
    background: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1rem;
}

.avatar.bais {
    background: transparent;
    border: none;
}

.avatar.user {
    background: #28a745;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
    text-align: left;
}

.chat-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    text-align: left;
}

.messages-area {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.message.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: 0.7rem 1rem;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.user .message-bubble {
    background: #007aff;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.bais .message-bubble {
    background: #e9ecef;
    color: #333;
    border-bottom-left-radius: 4px;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-top: 0.75rem;
    cursor: pointer;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: fit-content;
}

.document-link:hover {
    background: #e9ecef;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.document-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.document-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.document-separator {
    color: #666;
    font-weight: normal;
}

.text-input-area {
    background: #f8f9fa;
    border-top: 1px solid #ddd;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    outline: none;
    background: white;
}

.text-input:focus {
    border-color: #007aff;
}

.send-button {
    background: #007aff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}

.typing-indicator {
    display: inline-block;
}

.typing-indicator::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Browser Notification Simulation */
.browser-notification {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 320px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 200;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browser-notification:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.notification-header {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.notification-favicon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.notification-body {
    padding: 1rem;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.notification-message {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-time {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}

@keyframes slideInNotification {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.browser-notification.show {
    animation: slideInNotification 0.4s ease-out;
}

/* In-Chat Modal */
.chat-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 12px;
}

.chat-modal.hidden {
    display: none;
}

.chat-modal-content {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.chat-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.chat-modal-content * {
    text-align: left;
}

.chat-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.chat-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.demo-complete-modal {
    text-align: center;
}

.demo-complete-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.demo-complete-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.replay-btn {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.replay-btn:hover {
    background: #e9ecef;
}

.waitlist-btn {
    background: #4a9d5f;
    color: white;
}

.waitlist-btn:hover {
    background: #2d6a40;
}

/* Features Section */
#features-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.features-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.platform-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.google-workspace-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.platform-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.microsoft-logo {
    filter: none;
}

.feature-card:hover .google-workspace-logo {
    transform: scale(1.05);
}

.feature-card:hover .platform-logo {
    transform: scale(1.05);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #333;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

label {
    font-weight: 600;
    color: #333;
}

button[type="submit"] {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: #0f172a;
}

/* Feature Modal Content */
.email-preview {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    font-family: monospace;
}

.agenda-list {
    list-style: none;
    padding: 0;
}

.agenda-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.todo-list {
    list-style: none;
    padding: 0;
}

.todo-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.todo-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Comparison Section */
#comparison-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.comparison-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

.comparison-table th {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tr:hover {
    background-color: #e3f2fd;
    transition: background-color 0.2s ease;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #333;
    background-color: #ffffff;
}

.comparison-table tr:nth-child(even) td:first-child {
    background-color: #f8f9fa;
}

.comparison-table tr:hover td:first-child {
    background-color: #e3f2fd;
}

.comparison-table td:nth-child(2) {
    color: #666;
}

.comparison-table td:nth-child(3) {
    color: #1e3a8a;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 1rem;
    }
    
    .nav-logo-image {
        height: 32px;
        width: 32px;
    }
    
    .nav-logo-text {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    #hero h2 {
        font-size: 2rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .basil-guy-image {
        height: 80px;
    }
    
    #demo-container {
        height: 360px;
    }
    
    #demo-container.loading {
        font-size: 1.5rem;
    }
    
    .loading-avatar {
        width: 50px;
        height: 50px;
    }
    
    .hero-demo {
        padding: 1.5rem;
    }
    
    .message-bubble {
        max-width: 85%;
    }
    
    .chat-container {
        height: 360px;
    }
    
    .demo-title {
        height: 360px;
        font-size: 1.5rem;
    }
    
    .chat-header {
        padding: 0.8rem;
    }
    
    .avatar {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .text-input-area {
        padding: 0.8rem;
    }
    
    .text-input {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    #controls button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    #cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-card {
        padding: 1.5rem;
        max-width: 100%;
        width: 100%;
        max-width: 350px;
    }
    
    .features-container h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-container h2 {
        font-size: 2rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .comparison-table th {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-platforms {
        gap: 1.5rem;
    }
    
    .google-workspace-logo {
        height: 24px;
    }
    
    .platform-logo {
        height: 20px;
    }
    
    .platform-item span {
        font-size: 0.8rem;
    }
}

/* Footer */
#footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-brand p {
    color: #bdc3c7;
    margin: 0;
}

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

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bdc3c7;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.footer-link svg {
    width: 20px;
    height: 20px;
}

.footer-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}