/* Matrix-Background Canvas fixiert und immer im Hintergrund */
#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: #2c3e50;
    overflow-x: hidden;
}

/* Viewport scaling for mobile */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Matrix Canvas Hintergrund */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
}

/* Content Wrapper */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

nav a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
    flex-grow: 1;
}

.hero h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 800px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 700px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.18),
                0 5px 15px rgba(0, 0, 0, 0.06);
}

.hero-text img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #475569;
}

.hero-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.hero-row .hero-text {
    flex: 1 1 48%;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button img {
    display: block;
    width: 60%;
    height: 60%;
    margin: 0 auto;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.85rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    margin-top: 40px;
}

/* Admin Table Styles */
.table-wrapper {
    max-width: 100%;
    overflow: visible;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.table-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-secondary {
    padding: 10px 20px;
    background: rgba(100, 116, 139, 0.1);
    color: #475569;
    border: 2px solid rgba(100, 116, 139, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(100, 116, 139, 0.2);
    border-color: rgba(100, 116, 139, 0.3);
}

.table-responsive {
    overflow-x: auto;
    margin: 0 -35px;
    padding: 0 35px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1e40af;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-size: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.admin-table th, .admin-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.admin-table th {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.admin-table tbody tr {
    transition: all 0.2s ease;
}

.admin-table tbody tr:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.admin-table tbody tr.row-past {
    opacity: 0.6;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.admin-table a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.appointment-time {
    line-height: 1.4;
}

.time-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-pending {
    background: rgba(251, 191, 36, 0.15);
    color: #d97706;
}

.status-confirmed {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.notes-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: help;
}

.text-muted {
    color: #94a3b8;
    font-style: italic;
}

.action-buttons-cell {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Admin Container */
.admin-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.empty-state p {
    color: #64748b;
    margin-bottom: 25px;
}

/* Print Styles */
@media print {
    header, footer, .table-actions, .action-buttons-cell, canvas {
        display: none !important;
    }
    
    .admin-table {
        box-shadow: none;
    }
    
    body {
        background: white;
    }
    
    .hero-text {
        background: white;
        box-shadow: none;
    }
}

/* Active Navigation Link */
nav a.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.12);
    font-weight: 600;
}

/* Hero Text Überschriften */
.hero-text h2 {
    font-size: 1.4rem;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    margin-top: -20px;
    margin-bottom: 50px;
    font-weight: 400;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h2 {
    font-size: 1.35rem;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #64748b;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    text-align: center;
}

.cta-section h2 {
    font-size: 1.8rem;
    color: #1e40af;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.cta-button-secondary:hover {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.services-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.services-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #475569;
    line-height: 1.6;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-info-card {
    text-align: left;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.contact-details strong {
    color: #1e40af;
    display: block;
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e40af;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

/* Hero Image Styling */
.hero-img {
    width: 60%;
    height: auto;
    margin: 20px auto;
    display: block;
}

/* CTA Button Image Styling */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.cta-button img {
    width: 60%;
    height: 60%;
    max-width: 200px;
}

/* Overview Container */
.overview-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 40px;
    align-items: start;
}

.date-selector-card {
    position: sticky;
    top: 100px;
}

.availability-card {
    min-height: 400px;
}

/* Date Selector Form */
.date-selector-form {
    margin-bottom: 30px;
}

.date-selector-form .form-group {
    margin-bottom: 0;
}

.date-selector-form input[type="date"] {
    width: 100%;
}

/* Stats Box */
.stats-box {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.stats-box h3 {
    color: #1e40af;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.stats-box p {
    margin: 8px 0;
    color: #475569;
}

.stats-box strong {
    color: #1e40af;
}

/* Availability List */
.availability-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

/* Time Slots */
.time-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.time-slot.available {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.05);
}

.time-slot.available:hover {
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.15);
}

.time-slot.occupied {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
    opacity: 0.7;
}

.time-slot-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.time-slot-info {
    flex: 1;
}

.time-slot-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 4px;
}

.time-slot.occupied .time-slot-time {
    color: #64748b;
}

.time-slot-status {
    font-size: 0.9rem;
    color: #64748b;
}

.time-slot.available .time-slot-status {
    color: #22c55e;
    font-weight: 500;
}

.time-slot.occupied .time-slot-status {
    color: #ef4444;
}

.time-slot-button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.time-slot-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: scale(1.05);
}

/* Alert Boxes */
.alert-box,
.success-box {
    padding: 16px 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid;
}

.alert-box {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #991b1b;
}

.success-box {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #166534;
}

.alert-box p,
.success-box p {
    margin: 0;
    line-height: 1.6;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Legend Box */
.legend-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.legend-box h3 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.legend-items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
}

.legend-icon {
    font-size: 1.3rem;
}

/* Booking Container */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.booking-form-wrapper {
    max-width: 100%;
}

.booking-info {
    position: sticky;
    top: 100px;
}

/* Form Row for side-by-side inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Info Items */
.info-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item h3 {
    color: #1e40af;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    line-height: 1.7;
}

.info-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Form Info */
.form-info {
    margin: 20px 0;
    padding: 12px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
}

.form-info small {
    color: #64748b;
    font-size: 0.9rem;
}

/* Select Styling */
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select:disabled {
    background: rgba(148, 163, 184, 0.1);
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group select option {
    padding: 10px;
    color: #2c3e50;
}

.form-group select option:disabled {
    color: #94a3b8;
    background: #f1f5f9;
    font-style: italic;
}

.form-group select option:not(:disabled) {
    color: #2c3e50;
    background: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-container {
        grid-template-columns: 1fr;
    }

    .date-selector-card {
        position: static;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .hero {
        padding: 40px 15px;
        gap: 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-text {
        padding: 25px;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-row {
        gap: 20px;
    }

    .hero-row .hero-text {
        flex: 1 1 100%;
    }

    .hero-img {
        width: 80%;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .booking-info {
        position: static;
    }

    .overview-container {
        grid-template-columns: 1fr;
    }

    .date-selector-card {
        position: static;
    }

    .time-slot {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }

    .time-slot-button {
        width: 100%;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .cta-button {
        width: 100%;
    }

    .legend-items {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .admin-table th, .admin-table td {
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-text {
        padding: 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}