body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header,
.footer {
    background-color: #f0f0f0;
    padding: 1em;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-content {
    flex: 1;
}

.header-logo {
    height: 100px;
    width: auto;
    margin-left: 2em;
}

.navbar-item {
    font-weight: bold;
}

.content {
    padding: 1em 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
}

.content.active {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.content:first-of-type {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

/* Partners Section Styles */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    margin-top: 2em;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    width: 100%;
    max-width: 200px;
    padding: 1em;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.partner-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.partner-logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5em;
    }
    
    .partner-logo {
        max-width: 150px;
    }
}