 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

 :root {
    --primary-color: #003366;;
    --secondary-color: #005a87;
    --accent-color: #FFC72C;
    --light-color: #f5f9fc;
    --dark-color: #333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.5s ease;
 }

body {
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    background-color: var(--accent-color);
}

.container {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.header {
    border-bottom: 2px solid var(--primary-color);
}

h1 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 2.3rem;
    color: var(--primary-color);
}

p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.cards-container{
    display: grid;
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.card-menu{
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 9px 19px gray;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
}

.card-menu:hover {
    transform: translateY(-10px);
    box-shadow: 0 9px 19px gray;
    background-color: var(--accent-color);
}

.menu-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}


.menu-desc {
    font-size: 1rem;
    color: var(--primary-color);
}

.icon{
    margin-right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--accent-color);
    background-image: url(./foto/list.png);
    background-size: 100%;
    background-position: center;
}

@media (max-width:778px) {
    .nav-container{
        padding: 2rem;
    }

    .cards-container{
        margin: 2rem;
    }

    .header{
        margin: 2rem;
    }
}

@media (max-width:480px) {
    .nav-container{
        padding: 1rem;
    }

    .cards-container{
        margin: 1rem;
    }
}