/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-align: center;
}

/* Logo */
.logo-container {
    padding: 20px;
}

.logo {
    height: 70px;
}

/* Sections */
.section {
    display: none;
    padding: 40px 20px;
    animation: fadeIn 0.6s ease;
}

.section.active {
    display: block;
}

/* Home Cards */
.action-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.action-card {
    background: #ffffff;
    color: #333;
    width: 240px;
    height: 240px;
    border-radius: 18px;
    padding: 30px 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.action-card i {
    font-size: 64px;
    color: #667eea;
    margin-bottom: 20px;
}

.action-card p {
    font-size: 16px;
}

.action-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Buttons */
.back-btn {
    margin-top: 30px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: #ffffff;
    color: #667eea;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.back-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .action-card {
        width: 90%;
        height: auto;
    }

    .action-card i {
        font-size: 54px;
    }
}
