/* Minimal flexbox reset & styles */
:root {
    --color-bg: #ffffff;
    --color-text: #333333;
    --color-accent: #000000;
    --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    max-width: 100%;
}

.site-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header & Nav */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.logo img {
    height: 40px;
}

.site-nav {
    display: flex;
}

.menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.menu-item {
    position: relative;
    padding: 10px 0;
}

.menu-item > a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 150px;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.has-dropdown:hover .sub-menu {
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 5px 20px;
    font-size: 13px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #000;
    margin: 4px 0;
}

/* Main */
.site-main {
    flex: 1;
    padding: 40px 0;
}

/* Container inside main for content */
.romlicontainer {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Fusion Builder Helpers */
.fusion-builder-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
.fusion-layout-column {
    box-sizing: border-box;
}

/* Footer */
.site-footer {
    background: #f9f9f9;
    padding: 40px 0 20px;
    font-size: 13px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-col h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 5px;
}

.footer-col ul li a {
    text-transform: lowercase;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 20px;
    }

    .menu.active {
        display: flex;
    }

    .site-nav {
        flex-wrap: wrap;
    }
    
    .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .has-dropdown.active .sub-menu {
        display: block;
    }
    
    .fusion-layout-column {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 20px;
    }
}
