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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f4f0;
    color: #1e3a1e;
    min-height: 100vh;
    line-height: 1.6;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    border-radius: 12px;
    border: 3px solid #1e3a1e;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #f5f5dc;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.3em;
    color: #e6f3e6;
    font-weight: 500;
}

/* Навигация */
.main-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-btn {
    background: #f5f5dc;
    color: #1e3a1e;
    border: 3px solid #6b8e23;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: normal;
    min-width: 160px;
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.2);
}

.nav-btn:hover {
    border-color: #2d5016;
    background: #e6f3e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.nav-btn.active {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    color: #f5f5dc;
    border-color: #1e3a1e;
}

.nav-btn.active:hover {
    background: linear-gradient(135deg, #2d5016 0%, #1e3a1e 100%);
    transform: translateY(-1px);
}

/* Общие стили для секций */
.section {
    animation: fadeIn 0.3s ease-in-out;
}

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

.add-soldier-section {
    background: #fafdf7;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid #6b8e23;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

.add-soldier-section h2 {
    color: #2d5016;
    margin-bottom: 25px;
    font-size: 2em;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1e3a1e;
    font-size: 1.1em;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #6b8e23;
    border-radius: 8px;
    background: #f9fcf5;
    color: #1e3a1e;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2d5016;
    background: white;
    box-shadow: 0 0 8px rgba(45, 80, 22, 0.3);
}

button {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    color: #f5f5dc;
    border: 2px solid #1e3a1e;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(45, 80, 22, 0.3);
}

button:hover {
    background: linear-gradient(135deg, #2d5016 0%, #1e3a1e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.4);
}

.soldiers-list, .upcoming-events, .calendar-section {
    background: #fafdf7;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid #6b8e23;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

.soldiers-list h2, .upcoming-events h2, .calendar-section h2 {
    color: #2d5016;
    margin-bottom: 25px;
    font-size: 2em;
    font-weight: 700;
}

.soldier-card {
    background: #f9fcf5;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #cd7f32;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #6b8e23;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1);
}

.soldier-card:hover {
    transform: translateX(8px);
    background: #f0f4f0;
    border-left-color: #b8860b;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

.soldier-name {
    font-size: 1.4em;
    font-weight: 700;
    color: #1e3a1e;
    margin-bottom: 15px;
}

.soldier-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.soldier-stat {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #6b8e23;
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.1);
}

.stat-label {
    font-size: 0.9em;
    color: #4a7c59;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.3em;
    font-weight: 700;
    color: #1e3a1e;
}

.soldier-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-small {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view {
    background: linear-gradient(135deg, #6b8e23 0%, #4a7c59 100%);
    border: 2px solid #2d5016;
    color: #f5f5dc;
}

.btn-view:hover {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
}

.btn-delete {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    border: 2px solid #654321;
    color: #f5f5dc;
}

.btn-delete:hover {
    background: linear-gradient(135deg, #654321 0%, #4a3018 100%);
}

.event-item {
    background: #f9fcf5;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #cd7f32;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #6b8e23;
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.1);
}

.event-title {
    font-weight: 700;
    color: #1e3a1e;
    font-size: 1.1em;
}

.event-date {
    color: #4a7c59;
    font-size: 0.95em;
    font-weight: 500;
}

.event-days {
    background: linear-gradient(135deg, #b8860b 0%, #cd7f32 100%);
    color: #f5f5dc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #8B4513;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 25px;
}

.calendar-day {
    background: #f9fcf5;
    padding: 12px 8px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #6b8e23;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    color: #1e3a1e;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calendar-day:hover {
    border-color: #2d5016;
    background: #e6f3e6;
    transform: scale(1.05);
}

.calendar-day.has-event {
    border-color: #cd7f32;
    background: #fdf5e6;
    color: #8B4513;
    cursor: pointer;
    font-weight: 700;
}

.calendar-day.has-event:hover {
    background: #f5deb3;
    transform: scale(1.08);
    border-color: #b8860b;
}

.calendar-day.today {
    border-color: #8B4513;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: #f5f5dc;
    font-weight: 700;
}

.calendar-day.today.has-event {
    background: linear-gradient(135deg, #b8860b 0%, #cd7f32 100%);
    border-color: #8B4513;
}

.calendar-day.today.has-event:hover {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    transform: scale(1.08);
}

.calendar-weekday {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%) !important;
    color: #f5f5dc !important;
    font-weight: 700 !important;
    border-color: #1e3a1e !important;
    cursor: default !important;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.3) !important;
}

.calendar-weekday:hover {
    transform: none !important;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%) !important;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 30, 0);
    transition: background-color 0.3s ease;
}

.modal.show {
    background-color: rgba(30, 58, 30, 0.9);
}

.modal-content {
    background: #fafdf7;
    margin: 5% auto;
    padding: 40px;
    border: 3px solid #2d5016;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.4);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.close {
    color: #4a7c59;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #8B4513;
}

.modal-content h2 {
    color: #2d5016;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.modal-content h3 {
    color: #4a7c59;
    font-weight: 700;
    font-size: 1.4em;
}

.calendar-section h3 {
    color: #2d5016;
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Навигация по месяцам */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 10px;
}

.calendar-title {
    color: #2d5016;
    font-weight: 700;
    font-size: 1.5em;
    margin: 0;
    text-align: center;
    flex-grow: 1;
    text-shadow: 1px 1px 2px rgba(45, 80, 22, 0.2);
}

.calendar-nav-btn {
    background: linear-gradient(135deg, #6b8e23 0%, #4a7c59 100%);
    color: #f5f5dc;
    border: 2px solid #2d5016;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(45, 80, 22, 0.3);
}

.calendar-nav-btn:hover {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.4);
}

.calendar-nav-btn:active {
    transform: scale(0.95);
}

.milestone-item {
    background: #f9fcf5;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #cd7f32;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #6b8e23;
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.1);
}

.milestone-title {
    font-weight: 700;
    color: #1e3a1e;
    font-size: 1.1em;
}

.milestone-date {
    color: #4a7c59;
    font-size: 0.95em;
    font-weight: 500;
}

.milestone-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0,0,0,0.1);
}

.milestone-completed {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    color: #f5f5dc;
    border-color: #1e3a1e;
}

.milestone-upcoming {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
    color: #f5f5dc;
    border-color: #8B4513;
}

.milestone-future {
    background: linear-gradient(135deg, #6b8e23 0%, #4a7c59 100%);
    color: #f5f5dc;
    border-color: #2d5016;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: #e6f3e6;
    border-radius: 12px;
    overflow: hidden;
    margin: 25px 0;
    border: 2px solid #6b8e23;
    box-shadow: inset 0 2px 4px rgba(45, 80, 22, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    transition: width 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(45, 80, 22, 0.3);
}

.progress-text {
    text-align: center;
    margin-top: 15px;
    font-weight: 700;
    color: #1e3a1e;
    font-size: 1.1em;
}

/* Touch-friendly стили */
@media (hover: none) and (pointer: coarse) {
    .calendar-day {
        min-height: 75px;
        padding: 10px 6px;
    }
    
    .nav-btn {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .btn-small {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    button {
        padding: 20px 32px;
        font-size: 18px;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    header h1 {
        font-size: 2.2em;
    }
    
    header p {
        font-size: 1.1em;
    }
    
    .main-navigation {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .nav-btn {
        min-width: 120px;
        padding: 16px 20px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .add-soldier-section,
    .soldiers-list,
    .upcoming-events,
    .calendar-section {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .soldier-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .soldier-card {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .soldier-name {
        font-size: 1.3em;
        margin-bottom: 12px;
    }
    
    .soldier-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-small {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Календарь на мобильном */
    .calendar-header {
        padding: 0;
        margin-bottom: 20px;
    }
    
    .calendar-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .calendar-title {
        font-size: 1.4em;
    }
    
    .calendar-grid {
        gap: 6px;
        margin-top: 20px;
    }
    
    .calendar-day {
        min-height: 70px;
        padding: 8px 4px;
        border-radius: 8px;
        font-size: 16px;
        border-width: 2px;
    }
    
    .calendar-weekday {
        min-height: 50px !important;
        font-size: 14px !important;
        padding: 8px 2px !important;
    }
    
    .calendar-day:hover {
        transform: scale(1.02);
    }
    
    .calendar-day.has-event:hover {
        transform: scale(1.02);
    }
    
    .calendar-day.today.has-event:hover {
        transform: scale(1.02);
    }
    
    /* Модальные окна на мобильном */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
        border-radius: 12px;
        max-height: 85vh;
    }
    
    .close {
        font-size: 28px;
    }
    
    /* События на мобильном */
    .event-item {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .event-days {
        align-self: flex-end;
        margin-top: 5px;
    }
    
    .milestone-item {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .milestone-status {
        align-self: flex-end;
    }
    
    /* Формы на мобильном */
    .form-group label {
        font-size: 1em;
    }
    
    .form-group input {
        padding: 16px 18px;
        font-size: 16px;
    }
    
    button {
        padding: 18px 28px;
        font-size: 16px;
    }
    
    /* События группы на мобильном */
    .events-group-header {
        padding: 12px 16px;
        margin: 20px 0 12px 0;
    }
    
    .events-group-header h4 {
        font-size: 1.1em;
    }
    
    /* Импорт/Экспорт на мобильном */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .import-export-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-import, .btn-export {
        flex: 1;
        padding: 16px 20px;
        font-size: 15px;
    }
    
    /* Уведомления на мобильном */
    .notification {
        top: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        padding: 16px 20px;
        font-size: 15px;
        border-radius: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    header {
        padding: 25px 15px;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    .main-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-btn {
        width: 100%;
        min-width: auto;
        padding: 18px 20px;
    }
    
    .calendar-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .calendar-title {
        font-size: 1.2em;
    }
    
    .calendar-day {
        min-height: 65px;
        font-size: 15px;
    }
    
    .calendar-weekday {
        min-height: 45px !important;
        font-size: 12px !important;
        padding: 6px 1px !important;
    }
    
    .modal-content {
        margin: 2% auto;
        padding: 15px;
        max-height: 95vh;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .import-export-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-import, .btn-export {
        width: 100%;
        padding: 18px 20px;
        font-size: 16px;
    }
}

.no-data {
    text-align: center;
    color: #4a7c59;
    font-style: italic;
    padding: 50px 20px;
    font-size: 1.1em;
    font-weight: 500;
    background: #f0f4f0;
    border-radius: 12px;
    border: 2px dashed #6b8e23;
    margin: 20px 0;
}

.notification {
    position: fixed;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    color: #f5f5dc;
    padding: 18px 25px;
    border-radius: 12px;
    border: 3px solid #1e3a1e;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.4);
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    border-color: #654321;
}

/* Группировка событий */
.events-group-header {
    margin: 25px 0 15px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e6f3e6 0%, #f0f4f0 100%);
    border-radius: 12px;
    border-left: 4px solid #cd7f32;
    border: 1px solid #6b8e23;
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.1);
}

.events-group-header h4 {
    margin: 0;
    color: #2d5016;
    font-size: 1.2em;
    font-weight: 700;
}

.more-events-info,
.more-events-soldier {
    text-align: center;
    padding: 15px;
    margin: 10px 0;
    background: #f0f4f0;
    border-radius: 8px;
    color: #4a7c59;
    font-style: italic;
    font-weight: 500;
    border: 1px solid #6b8e23;
}

.more-events-soldier {
    margin-bottom: 25px;
    font-size: 0.9em;
}

/* Импорт/Экспорт */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    margin: 0;
}

.import-export-buttons {
    display: flex;
    gap: 15px;
}

.btn-import, .btn-export {
    background: linear-gradient(135deg, #6b8e23 0%, #4a7c59 100%);
    color: #f5f5dc;
    border: 2px solid #2d5016;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(45, 80, 22, 0.3);
}

.btn-import:hover, .btn-export:hover {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.4);
}

.btn-export {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
    border-color: #8B4513;
}

.btn-export:hover {
    background: linear-gradient(135deg, #b8860b 0%, #8B4513 100%);
}

/* Модальное окно импорта */
.import-info {
    background: #f0f4f0;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid #6b8e23;
}

.import-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #1e3a1e;
}

.import-info p:last-child {
    margin-bottom: 0;
}

.import-options {
    text-align: center;
}

.import-options h3 {
    color: #2d5016;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.import-options button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: normal;
}

.btn-import-replace {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: #f5f5dc;
    border: 2px solid #654321;
}

.btn-import-replace:hover {
    background: linear-gradient(135deg, #654321 0%, #4a3018 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.btn-import-add {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
    color: #f5f5dc;
    border: 2px solid #1e3a1e;
}

.btn-import-add:hover {
    background: linear-gradient(135deg, #2d5016 0%, #1e3a1e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.4);
}

.btn-import-cancel {
    background: #f0f4f0;
    color: #4a7c59;
    border: 2px solid #6b8e23;
}

.btn-import-cancel:hover {
    background: #e6f3e6;
    color: #2d5016;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.2);
} 