/* San Francisco font stack */
* {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", system-ui, sans-serif;
}

/* Custom spacing for 5.5cm margins */
.content-container {
    margin-left: 5.5cm;
    margin-right: 5.5cm;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

/* Mobile Footer Accordion Styles */
@media (max-width: 768px) {
.mobile-footer {
display: block !important;
background: #000;
padding: 0;
}

.desktop-footer {
display: none !important;
}

.accordion-section {
border-bottom: 1px solid #333;
}

.accordion-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 24px;
background: #000;
color: white;
cursor: pointer;
font-size: 18px;
font-weight: 500;
transition: background-color 0.2s ease;
}

.accordion-header:hover {
background: #1a1a1a;
}

.accordion-arrow {
transition: transform 0.3s ease;
color: white;
}

.accordion-arrow.rotated {
transform: rotate(180deg);
}

.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
background: #000;
}

.accordion-content.active {
max-height: 500px;
}

.accordion-links {
padding: 0 24px 20px 24px;
}

.accordion-links a {
display: block;
color: white;
text-decoration: none;
padding: 8px 0;
font-size: 16px;
transition: color 0.2s ease;
}

.accordion-links a:hover {
color: white;
}

.mobile-footer-bottom {
padding: 24px;
text-align: center;
border-top: 1px solid #333;
background: #000;
}

.mobile-footer-brand {
padding: 24px;
text-align: center;
background: #000;
}

.mobile-footer-brand h2 {
color: white;
font-size: 24px;
font-weight: bold;
margin-bottom: 8px;
}

.mobile-footer-brand p {
color: white;
margin-bottom: 16px;
}

.mobile-social-icons {
display: flex;
justify-content: center;
gap: 16px;
}

.mobile-social-icons a {
color: white;
transition: color 0.2s ease;
}

.mobile-social-icons a:hover {
color: white;
}
}

