/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Family Access Page Styles */
.family-access-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    flex: 1;
}

/* Background Gallery for Family Photos */
.family-background-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #CE1126 0%, #FCD116 50%, #006B3F 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 3s ease-in-out;
}

.family-background-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.85) 0%, rgba(252, 209, 22, 0.85) 50%, rgba(0, 107, 63, 0.85) 100%);
    z-index: 1;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    backdrop-filter: blur(2px);
}

.family-background-gallery .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    z-index: 0;
    display: block;
}

.family-background-gallery .background-image.active {
    opacity: 0.5;
    display: block;
}

/* Extended Family Message Section */
.extended-family-message {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
    max-width: 900px;
    width: 100%;
    display: block;
}

.message-content h2 {
    color: #006B3F;
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.message-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.message-quote {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f0f8f4 0%, #fff9e6 100%);
    border-left: 5px solid #006B3F;
    border-radius: 10px;
    text-align: center;
}

.message-quote p {
    font-size: 1.3em;
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.message-quote span {
    font-size: 0.9em;
    color: #666;
    font-style: normal;
}

.welcome-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.welcome-header {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    position: relative;
    z-index: 100;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    display: block;
}

.welcome-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-header p {
    font-size: 1.3em;
    opacity: 0.95;
    font-weight: 300;
}

.access-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    justify-items: center;
    position: relative;
    z-index: 100;
}

@media (max-width: 768px) {
    .access-cards {
        grid-template-columns: 1fr;
    }
    
    .welcome-header h1 {
        font-size: 2em;
    }
    
    .welcome-header p {
        font-size: 1.1em;
    }
    
    .extended-family-message {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .message-content h2 {
        font-size: 1.6em;
    }
    
    .message-text {
        font-size: 1em;
        text-align: left;
    }
    
    .message-quote {
        padding: 20px;
    }
    
    .message-quote p {
        font-size: 1.1em;
    }
}

.access-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #CE1126 0%, #FCD116 50%, #006B3F 100%);
}

.access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 107, 63, 0.3);
}

.theme-dropdown label:hover {
    background: #f0f0f0;
}

/* Fixed Theme Switcher */
.theme-switcher-fixed {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    display: block !important;
    visibility: visible !important;
}

.theme-toggle-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer !important;
    font-size: 1.5em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.theme-dropdown-fixed {
    position: absolute !important;
    right: 60px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    min-width: 250px !important;
    padding: 0 !important;
    display: none !important;
    animation: slideIn 0.3s ease !important;
    z-index: 10000 !important;
}

.theme-dropdown-fixed.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.theme-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.theme-option:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.theme-option:hover {
    background: #f8f9fa;
}

.theme-option input[type="radio"] {
    cursor: pointer;
}

.theme-option span {
    cursor: pointer;
    user-select: none;
}

.create-card::before {
    background: linear-gradient(90deg, #CE1126 0%, #FCD116 50%, #006B3F 100%);
}

.join-card::before {
    background: linear-gradient(90deg, #CE1126 0%, #FCD116 50%, #006B3F 100%);
}

.search-card::before {
    background: linear-gradient(90deg, #CE1126 0%, #FCD116 50%, #006B3F 100%);
}

.card-icon {
    font-size: 4em;
    text-align: center;
    margin-bottom: 20px;
}

.access-card h2 {
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.8em;
}

.card-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05em;
    line-height: 1.6;
}

.access-form {
    margin-top: 20px;
}

.access-form .form-group {
    margin-bottom: 20px;
}

.access-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 0.95em;
}

.access-form input[type="text"],
.access-form input[type="tel"],
.access-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.access-form input:focus {
    outline: none;
    border-color: #006B3F;
    box-shadow: 0 0 0 3px rgba(0, 107, 63, 0.1);
}

.access-form small {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 0.85em;
    line-height: 1.4;
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 107, 63, 0.4);
}

/* Modal Styles (kept for backward compatibility) */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1001;
}

.modal-content input[type="text"] {
    pointer-events: auto !important;
    cursor: text !important;
}

.modal-content h2 {
    color: #006B3F;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #CE1126 0%, #FCD116 50%, #006B3F 100%);
    min-height: 100vh;
    padding: 20px;
    padding-bottom: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Header */
header {
    background: linear-gradient(135deg, #CE1126 0%, #FCD116 50%, #006B3F 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    min-height: 600px;
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

/* Panel Styles */
.left-panel, .right-panel {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    overflow-y: auto;
    max-height: 700px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-header h2 {
    color: #006B3F;
    font-size: 1.5em;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #006B3F;
    color: white;
}

.btn-primary:hover {
    background: #005030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 107, 63, 0.4);
}

.btn-secondary {
    background: #000000;
    color: white;
}

.btn-secondary:hover {
    background: #333333;
}

.btn-secondary:disabled,
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-back {
    background: #006B3F;
    color: white;
    margin-top: 15px;
}

.btn-back:hover {
    background: #005030;
}

/* Search Box */
.search-box {
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #006B3F;
}

/* Tree Container */
.tree-container {
    min-height: 400px;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1em;
}

/* Family Tree Styles */
.family-tree {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.member-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.member-card:hover {
    border-color: #006B3F;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 107, 63, 0.2);
}

.member-card.selected {
    border-color: #006B3F;
    background: #f0f8f4;
}

.member-card.root {
    border-left: 4px solid #006B3F;
}

.member-card.deceased {
    background: linear-gradient(135deg, #8b5a3c 0%, #6b4423 100%) !important;
    border: 2px solid #8b5a3c !important;
    color: white !important;
    opacity: 0.9;
}

.member-card.deceased.root {
    background: linear-gradient(135deg, #8b5a3c 0%, #6b4423 100%) !important;
    border: 2px solid #8b5a3c !important;
}

.member-card.deceased .member-name {
    color: white !important;
}

.member-card.deceased .member-info {
    color: rgba(255, 255, 255, 0.9) !important;
}

.deceased-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: bold;
    margin-left: 8px;
}

.member-card .deceased-badge[style*="background: rgba(102, 126, 234, 0.3)"] {
    background: rgba(0, 107, 63, 0.3) !important;
    color: #006B3F;
    border: 1px solid #006B3F;
}

.death-details-section {
    background: #f5f5f5;
    border-left: 4px solid #8b5a3c;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
}

.death-details-section h4 {
    color: #8b5a3c;
    margin-bottom: 10px;
    font-size: 1em;
}

.death-details-section p {
    color: #555;
    line-height: 1.6;
    white-space: pre-wrap;
}

.member-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.member-info {
    font-size: 0.9em;
    color: #666;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.member-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.generation-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #006B3F;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
}

/* Member Counts */
.member-counts {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.count-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f8f4;
    color: #006B3F;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
    border: 1px solid #cce7d9;
}

.count-badge.children-count {
    background: #fff9e6;
    color: #FCD116;
    border-color: #f9e6a3;
}

.count-badge.descendants-count {
    background: #f0f8f4;
    color: #006B3F;
    border-color: #cce7d9;
}

.count-info {
    display: inline-block;
    margin-right: 15px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9em;
}

/* Children Indentation */
.children-container {
    margin-left: 30px;
    margin-top: 10px;
    border-left: 2px dashed #ccc;
    padding-left: 15px;
}

/* Member Details */
.member-details, .children-view, .add-member-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.member-details h2, .children-view h2, .add-member-form h2 {
    color: #006B3F;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.member-info-detail {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #006B3F;
    width: 150px;
}

.info-value {
    color: #333;
    flex: 1;
}

.info-value a {
    color: #006B3F;
    text-decoration: none;
    transition: color 0.3s;
}

.info-value a:hover {
    color: #005030;
    text-decoration: underline;
}

.info-value img {
    display: block;
    margin-top: 5px;
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    /* Hide non-essential elements */
    header,
    .header-actions,
    .search-box,
    .actions button:not(.print-only),
    #familyAccessPage,
    #familyModal,
    #addMemberForm,
    #editMemberForm,
    #emptyState,
    .btn-back,
    .modal,
    .app-footer {
        display: none !important;
    }
    
    /* Show print header */
    .print-header {
        display: block !important;
        text-align: center;
        margin-bottom: 20px;
        border-bottom: 2px solid #000;
        padding-bottom: 10px;
    }
    
    .print-header h1 {
        margin: 0;
        font-size: 18pt;
    }
    
    .print-header .print-date {
        font-size: 10pt;
        color: #666;
        margin-top: 5px;
    }
    
    /* Print container */
    .print-container {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Tree view for print */
    .tree-container {
        width: 100%;
        page-break-inside: avoid;
    }
    
    .member-card {
        border: 1px solid #000;
        margin: 5px;
        padding: 8px;
        page-break-inside: avoid;
        background: white;
        box-shadow: none;
    }
    
    .member-card.root {
        border: 2px solid #000;
        font-weight: bold;
    }
    
    .member-card.selected {
        border: 2px solid #000;
        background: #f0f0f0;
    }
    
    .member-name {
        font-size: 11pt;
        font-weight: bold;
    }
    
    .member-info {
        font-size: 9pt;
        margin-top: 5px;
    }
    
    .generation-badge {
        background: #e0e0e0;
        color: #000;
        border: 1px solid #000;
        padding: 2px 6px;
        font-size: 8pt;
    }
    
    .children-container {
        margin-left: 20px;
        margin-top: 10px;
    }
    
    /* Children/Descendants view for print */
    .children-view {
        display: block !important;
    }
    
    .child-item {
        border: 1px solid #000;
        margin: 5px 0;
        padding: 8px;
        page-break-inside: avoid;
    }
    
    /* Right panel for print */
    .right-panel {
        display: none;
    }
    
    /* Main container */
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 10px;
    }
    
    /* Two column layout for print */
    .main-content {
        display: block;
        width: 100%;
    }
    
    .left-panel {
        width: 100%;
    }
    
    /* Page breaks */
    .generation-section {
        page-break-after: auto;
        page-break-inside: avoid;
    }
    
    /* Hide badges and icons that don't print well */
    .count-badge,
    .member-counts {
        display: none;
    }
    
    /* Print footer */
    .print-footer {
        display: block !important;
        text-align: center;
        margin-top: 20px;
        padding-top: 10px;
        border-top: 1px solid #000;
        font-size: 9pt;
        color: #666;
    }
    
    @page {
        margin: 1cm;
        size: A4;
    }
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Children List */
.children-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.child-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #006B3F;
    cursor: pointer;
    transition: all 0.3s;
}

.child-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006B3F;
}

/* Searchable Select Styles */
.searchable-select {
    position: relative;
    width: 100%;
}

.searchable-select input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.searchable-select input[type="text"]:focus {
    outline: none;
    border-color: #006B3F;
}

.member-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #006B3F;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: -2px;
}

.member-dropdown-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.member-dropdown-item:hover {
    background-color: #f0f8f4;
}

.member-dropdown-item:last-child {
    border-bottom: none;
}

.member-dropdown-item.selected {
    background-color: #006B3F;
    color: white;
}

.member-dropdown-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1em;
}

/* Utility Classes */
.hidden {
    display: none;
}

.generation-label {
    display: inline-block;
    background: #006B3F;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    margin-left: 10px;
}

/* Footer Styles */
.app-footer {
    background: linear-gradient(135deg, #CE1126 0%, #FCD116 50%, #006B3F 100%);
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: auto;
    position: relative;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 0;
    font-size: 0.95em;
    opacity: 0.95;
}

.footer-content a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-content strong {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    .main-content {
        padding: 10px;
    }

    .panel-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .actions {
        flex-direction: column;
    }
}

.footer-content p {
    margin: 0;
    font-size: 0.95em;
    opacity: 0.95;
}

.footer-content a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-content strong {
    font-weight: 600;
}

