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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: url('purrrfect.jpg') center/cover no-repeat fixed;
        min-height: 100vh;
        padding: 20px;
        line-height: 1.6;
        transition: background 0.3s ease;
    }

    body.bg-grey {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 60%, #004d7a 100%) !important;
        min-height: 100vh;
    }

    body.bg-blue {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 60%, #4c63d2 100%) !important;
        min-height: 100vh;
    }

    body.bg-purple {
        background: linear-gradient(135deg, #11998e 0%, #38ef7d 60%, #0a5d61 100%) !important;
        min-height: 100vh;
    }

    body.bg-red {
        background: linear-gradient(135deg, #c44569 0%, #944e6b 60%, #4a1a2c 100%) !important;
        min-height: 100vh;
    }

    .container {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    h1 {
        color: #1d1d1f;
        margin-bottom: 30px;
        text-align: center;
        font-size: 2.5em;
    }

    .add-guest {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
    }

    .add-guest input {
        flex: 1;
        padding: 12px;
        border: 2px solid #e5e5e7;
        border-radius: 8px;
        font-size: 16px;
    }

    .add-guest input:focus {
        outline: none;
        border-color: #007aff;
    }

    .add-guest button {
        padding: 12px 24px;
        background: #007aff;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.2s;
    }

    .add-guest button:hover {
        background: #0056b3;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .stat {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
    }

    .stat-number {
        font-size: 2em;
        font-weight: bold;
        color: #1d1d1f;
    }

    .stat-label {
        color: #6e6e73;
        font-size: 0.9em;
    }

    .guest-list {
        display: grid;
        gap: 10px;
    }

    .guest-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: background 0.2s;
    }

    .guest-item.yes {
        background: #d4edda;
        border-left: 4px solid #28a745;
    }

    .guest-item.no {
        background: #f8d7da;
        border-left: 4px solid #dc3545;
    }

    .guest-name {
        font-weight: 500;
        color: #1d1d1f;
        margin-right: 8px;
    }

    .guest-count {
        font-size: 0.85em;
        color: #6e6e73;
        margin-right: 8px;
    }

    .guest-actions {
        display: flex;
        gap: 10px;
    }

    .btn {
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.2s;
    }

    .btn-yes {
        background: #28a745;
        color: white;
    }

    .btn-yes:hover {
        background: #218838;
    }

    .btn-no {
        background: #dc3545;
        color: white;
    }

    .btn-no:hover {
        background: #c82333;
    }

    .btn-pending {
        background: #6c757d;
        color: white;
    }

    .btn-pending:hover {
        background: #5a6268;
    }

    .btn-delete {
        background: #495057;
        color: white;
    }

    .btn-delete:hover {
        background: #343a40;
    }

    .status-badge {
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
    }

    .status-yes {
        background: #d4edda;
        color: #155724;
    }

    .status-no {
        background: #f8d7da;
        color: #721c24;
    }

    .status-pending {
        background: #e2e3e5;
        color: #495057;
    }

    .empty-state {
        text-align: center;
        padding: 40px;
        color: #6e6e73;
    }

    .tabs {
        display: flex;
        border-bottom: 2px solid #e5e5e7;
        margin-bottom: 30px;
    }

    .tab {
        padding: 15px 30px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        color: #6e6e73;
        border-bottom: 2px solid transparent;
        transition: all 0.2s;
    }

    .tab.active {
        color: #007aff;
        border-bottom-color: #007aff;
    }

    .tab:hover {
        color: #007aff;
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    .todo-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        margin-bottom: 10px;
        transition: background 0.2s;
    }

    .todo-item.completed {
        background: #d4edda;
        border-left: 4px solid #28a745;
    }

    .todo-item.completed .todo-text {
        text-decoration: line-through;
        color: #6e6e73;
    }

    .todo-text {
        flex: 1;
        margin-right: 15px;
    }

    .todo-actions {
        display: flex;
        gap: 10px;
    }

    .add-todo {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
    }

    .add-todo input {
        flex: 1;
        padding: 12px;
        border: 2px solid #e5e5e7;
        border-radius: 8px;
        font-size: 16px;
    }

    .add-todo input:focus {
        outline: none;
        border-color: #007aff;
    }

    /* Shopping List Styles */
    .shopping-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        margin: 8px 0;
        background: white;
        border-radius: 8px;
        border: 1px solid #e5e5e7;
        transition: all 0.2s;
    }

    .shopping-item:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .shopping-item.bought {
        background: #f8f9fa;
        opacity: 0.8;
    }

    .shopping-item.bought .shopping-text {
        text-decoration: line-through;
        color: #6c757d;
    }

    .shopping-text {
        flex: 1;
        font-size: 16px;
        color: #333;
    }

    .shopping-actions {
        display: flex;
        gap: 10px;
    }

    .add-shopping-item {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
    }

    .add-shopping-item input {
        flex: 1;
        padding: 12px;
        border: 2px solid #e5e5e7;
        border-radius: 8px;
        font-size: 16px;
    }

    .add-shopping-item input:focus {
        outline: none;
        border-color: #007aff;
    }

    .add-shopping-item button {
        padding: 12px 24px;
        background: #007aff;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        transition: background 0.2s;
    }

    .add-shopping-item button:hover {
        background: #0056b3;
    }

    .shopping-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .shopping-list {
        min-height: 200px;
    }

    .add-todo button {
        padding: 12px 24px;
        background: #007aff;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.2s;
    }

    .add-todo button:hover {
        background: #0056b3;
    }

    .todo-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    /* Authentication styles */
    .auth-container {
        max-width: 400px;
        margin: 0 auto;
        background: white;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .auth-tabs {
        display: flex;
        margin-bottom: 30px;
        border-bottom: 2px solid #e5e5e7;
    }

    .auth-tab {
        flex: 1;
        padding: 15px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        color: #6e6e73;
        border-bottom: 2px solid transparent;
        transition: all 0.2s;
    }

    .auth-tab.active {
        color: #007aff;
        border-bottom-color: #007aff;
    }

    .auth-form {
        display: none;
    }

    .auth-form.active {
        display: block;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        color: #1d1d1f;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 2px solid #e5e5e7;
        border-radius: 8px;
        font-size: 16px;
    }

    .form-group input:focus {
        outline: none;
        border-color: #007aff;
    }

    .password-input-container {
        position: relative;
    }

    .password-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        color: #6e6e73;
        padding: 4px;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .password-toggle:hover {
        color: #007aff;
    }

    .password-toggle svg {
        pointer-events: none;
    }

    .auth-button {
        width: 100%;
        padding: 12px;
        background: #007aff;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.2s;
    }

    .auth-button:hover {
        background: #0056b3;
    }

    .auth-button:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    .error-message {
        color: #dc3545;
        font-size: 14px;
        margin-top: 10px;
    }

    .success-message {
        color: #28a745;
        font-size: 14px;
        margin-top: 10px;
    }

    .forgot-password {
        text-align: center;
        margin: 15px 0;
    }

    .forgot-password-link {
        background: none;
        border: none;
        color: #007aff;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.2s;
        padding: 4px 0;
    }

    .forgot-password-link:hover {
        color: #0056b3;
        text-decoration: underline;
    }

    .form-group small {
        display: block;
        color: #6e6e73;
        font-size: 12px;
        margin-top: 5px;
    }

    .hidden {
        display: none;
    }

    .user-info {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 20px;
        gap: 10px;
    }

    .clear-data-btn {
        background: none;
        border: none;
        color: #dc3545;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        padding: 4px 8px;
        transition: color 0.2s;
    }

    .clear-data-btn:hover {
        color: #b02a37;
    }

    .logout-btn {
        background: none;
        border: none;
        color: #6c757d;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        padding: 4px 8px;
        transition: color 0.2s;
    }

    .logout-btn:hover {
        color: #495057;
    }

    .upgrade-btn {
        background: #007aff;
        border: none;
        color: white;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 6px;
        transition: background 0.2s;
        font-weight: 500;
    }

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

    /* App header with toggle and actions */
    .app-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        gap: 20px;
    }

    /* Storage mode toggle */
    .storage-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .toggle-container {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 28px;
    }

    .toggle-input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 28px;
    }

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    .toggle-input:checked + .toggle-slider {
        background-color: #007aff;
    }

    .toggle-input:checked + .toggle-slider:before {
        transform: translateX(32px);
    }

    .toggle-label {
        font-size: 14px;
        color: #1d1d1f;
        font-weight: 500;
        white-space: nowrap;
    }

    .toggle-label.inactive {
        color: #8e8e93;
    }

    /* Header actions */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .login-btn {
        background: none;
        border: none;
        color: #007aff;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        padding: 4px 8px;
        transition: color 0.2s;
        font-weight: 500;
    }

    .login-btn:hover {
        color: #0056b3;
    }

    /* Background toggle button */
    .bg-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid #007aff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: all 0.2s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .bg-toggle:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.1);
    }

    /* Footer styles */
    .footer {
        padding: 40px 20px;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Footer shadow only on cat background */
    body:not(.bg-grey):not(.bg-blue):not(.bg-purple):not(.bg-red) .footer {
        background: radial-gradient(ellipse 60% 50% at center, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(0, 0, 0, 0.2) 40%, 
            rgba(0, 0, 0, 0) 70%);
    }

    /* All gradient backgrounds use white text for footer */

    .footer-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .footer-love {
        margin-bottom: 12px;
    }

    .footer-author {
        color: rgba(255, 255, 255, 0.95);
        font-weight: 500;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .footer-link {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-link:hover {
        color: rgba(255, 255, 255, 1);
        text-decoration: underline;
    }

    .footer-separator {
        color: rgba(255, 255, 255, 0.5);
    }

    /* Editable title styles */
    .editable-title {
        cursor: pointer;
        position: relative;
        padding: 8px;
        border-radius: 8px;
        transition: background-color 0.2s;
    }

    .editable-title:hover {
        background-color: #f0f0f0;
    }

    .editable-title.editing {
        background-color: white;
        border: 2px solid #007aff;
    }

    .title-input {
        font-size: inherit;
        font-weight: inherit;
        text-align: center;
        border: none;
        outline: none;
        background: transparent;
        width: 100%;
        color: #1d1d1f;
        font-family: inherit;
        margin: 0;
        padding: 8px;
        white-space: nowrap;
        overflow: hidden;
    }

    .editable-title.editing {
        background-color: white;
        border: 2px solid #007aff;
        white-space: nowrap;
    }

    /* Modal styles */
    .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal.hidden {
        display: none;
    }

    .modal-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
    }

    .modal-content {
        background: white;
        border-radius: 12px;
        padding: 30px;
        max-width: 450px;
        width: 90%;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        position: relative;
        z-index: 1001;
    }

    .modal-content h2 {
        color: #1d1d1f;
        margin-bottom: 15px;
        font-size: 1.5em;
        text-align: center;
    }

    .modal-content p {
        color: #495057;
        margin-bottom: 20px;
        line-height: 1.5;
        text-align: center;
    }

    .modal-warning {
        background: #fff3cd;
        border: 1px solid #ffeaa7;
        border-radius: 8px;
        padding: 20px;
        margin: 20px 0;
    }

    .modal-warning p {
        color: #856404;
        margin-bottom: 10px;
        text-align: left;
    }

    .modal-warning ul {
        color: #856404;
        margin: 10px 0;
        padding-left: 20px;
    }

    .modal-warning li {
        margin-bottom: 5px;
    }

    .modal-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 25px;
    }

    .modal-btn {
        padding: 12px 24px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
        min-width: 120px;
    }

    .modal-cancel {
        background: #6c757d;
        color: white;
    }

    .modal-cancel:hover {
        background: #5a6268;
    }

    .modal-confirm {
        background: #dc3545;
        color: white;
    }

    .modal-confirm:hover {
        background: #c82333;
    }

    /* Mobile Optimizations */
    @media (max-width: 768px) {
        body {
            padding: 15px;
        }

        .container {
            padding: 20px;
            margin: 0 auto;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        h1 {
            font-size: 2em;
            margin-bottom: 20px;
        }

        /* Improve touch targets */
        .btn, .auth-button, .add-guest button, .add-todo button {
            min-height: 44px;
            padding: 12px 16px;
            font-size: 16px;
        }

        /* Stack stats on smaller screens */
        .stats, .todo-stats, .shopping-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        /* Better guest item layout on mobile */
        .guest-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            padding: 15px;
        }

        .guest-actions {
            width: 100%;
            justify-content: space-between;
            gap: 8px;
        }

        .guest-actions .btn {
            flex: 1;
            text-align: center;
            min-height: 44px;
        }

        /* Better todo layout on mobile */
        .todo-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            padding: 15px;
        }

        .todo-text {
            margin-right: 0;
            width: 100%;
        }

        .todo-actions {
            width: 100%;
            justify-content: flex-start;
            gap: 8px;
        }

        /* Improve form layouts */
        .add-guest, .add-todo, .add-shopping-item {
            flex-direction: column;
            gap: 12px;
        }

        .add-guest input, .add-todo input, .add-shopping-item input {
            width: 100%;
            margin-bottom: 0;
        }

        .add-guest button, .add-todo button, .add-shopping-item button {
            width: 100%;
        }

        /* Better shopping item layout on mobile */
        .shopping-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
        }

        .shopping-text {
            margin-right: 0;
            width: 100%;
            font-size: 16px;
            line-height: 1.4;
        }

        .shopping-actions {
            width: 100%;
            justify-content: flex-start;
            gap: 8px;
        }

        .shopping-actions .btn {
            text-align: center;
            min-height: 44px;
        }

        /* Auth forms */
        .auth-container {
            padding: 20px;
        }

        .auth-tabs {
            margin-bottom: 20px;
        }

        .auth-tab {
            flex: 1;
            padding: 12px 8px;
            font-size: 14px;
        }

        .forgot-password-link {
            font-size: 14px;
            padding: 8px 0;
        }

        /* Modal improvements */
        .modal-content {
            margin: 20px;
            max-width: calc(100vw - 40px);
            max-height: calc(100vh - 40px);
            overflow-y: auto;
        }

        .modal-buttons {
            flex-direction: column;
            gap: 10px;
        }

        .modal-btn {
            width: 100%;
            min-height: 44px;
        }

        /* Background toggle button */
        .bg-toggle {
            bottom: 15px;
            right: 15px;
            width: 44px;
            height: 44px;
            font-size: 18px;
        }

        /* Header actions */
        .header-actions {
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .clear-data-btn, .logout-btn {
            font-size: 14px;
            padding: 8px 12px;
        }

        /* Footer mobile */
        .footer-content {
            flex-direction: column;
            gap: 12px;
            text-align: center;
        }

        .footer-love {
            text-align: center;
        }
    }

    /* Extra small screens */
    @media (max-width: 480px) {
        .stats, .todo-stats, .shopping-stats {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .stat {
            padding: 15px;
        }

        .stat-number {
            font-size: 1.5em;
        }

        h1 {
            font-size: 1.8em;
        }

        .container {
            padding: 15px;
        }

        .tabs {
            margin-bottom: 20px;
        }

        .tab {
            padding: 12px 15px;
            font-size: 14px;
        }
    }

    /* About and Legal Pages Styles */
    body.page-about {
        background: url('purrrfect.jpg') center/cover no-repeat fixed;
        min-height: 100vh;
        color: #333;
        padding: 0;
    }

    body.page-legal {
        background: url('purrrfect.jpg') center/cover no-repeat fixed;
        min-height: 100vh;
        color: #333;
        padding: 0;
    }

    /* Override default gradients when background classes are applied */
    body.page-about.bg-grey,
    body.page-legal.bg-grey {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 60%, #004d7a 100%) !important;
    }

    body.page-about.bg-blue,
    body.page-legal.bg-blue {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 60%, #4c63d2 100%) !important;
    }

    body.page-about.bg-purple,
    body.page-legal.bg-purple {
        background: linear-gradient(135deg, #11998e 0%, #38ef7d 60%, #0a5d61 100%) !important;
    }

    body.page-about.bg-red,
    body.page-legal.bg-red {
        background: linear-gradient(135deg, #c44569 0%, #944e6b 60%, #4a1a2c 100%) !important;
    }

    .page-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px 0 20px;
    }

    .page-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .page-header h1 {
        color: white;
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .page-header p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.1em;
    }

    .page-content {
        background: white;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        margin-bottom: 0;
    }

    .page-section {
        margin-bottom: 30px;
    }

    .page-section h2 {
        color: #1d1d1f;
        margin-bottom: 15px;
        font-size: 1.4em;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 8px;
    }

    .page-section p {
        margin-bottom: 12px;
        color: #555;
    }

    .page-section a {
        color: #007aff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .page-section a:hover {
        color: #0056b3;
        text-decoration: underline;
    }

    .back-link {
        display: inline-block;
        background: #007aff;
        color: white;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 500;
        transition: background 0.2s;
        margin-top: 20px;
    }

    .back-link:hover {
        background: #0056b3;
    }

    @media (max-width: 768px) {
        .page-container {
            padding: 20px 15px;
        }
        
        .page-content {
            padding: 25px;
        }
        
        .page-header h1 {
            font-size: 2em;
        }
    }