:root {
    --primary-color: #f8f9fa;
    --secondary-color: #333;
    --accent-color: #27ae60;
    --text-color: #444;
    --border-color: #eaeaea;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1140px;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    padding: 15px;
}

.nav-links {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.main-menu, .right-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu {
    padding-left: 0;
}

.main-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    padding: 25px 0;
    display: inline-block;
    position: relative;
}

.main-menu a:hover, .main-menu a.active {
    color: var(--accent-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.main-menu a:hover::after, .main-menu a.active::after {
    width: 100%;
}

.right-menu .area-soci {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.right-menu .area-soci:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: rgba(39, 174, 96, 0.05);
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Hero Section */
.hero {
    margin: 2.5rem 0;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: block;
}

/* Main Content */
.main-content {
    padding: 1rem 0 3rem;
}

.text-content {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.text-content ol {
    padding-left: 1.5rem;
}

.text-content ol li {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    padding-left: 0.5rem;
    color: #333;
}

.text-content ol li::marker {
    font-weight: 700;
    color: var(--accent-color);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    margin-top: 2rem;
    background-color: #fff;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logos {
    flex: 1 1 500px;
}

.footer-logos img {
    max-width: 100%;
    height: auto;
    max-height: 110px;
}

.footer-info {
    flex: 1 1 300px;
    text-align: left;
}

.footer-info address {
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.footer-info strong {
    color: #222;
    font-size: 1.1rem;
}

.footer-info a {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        border-top: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .main-menu, .right-menu {
        flex-direction: column;
        width: 100%;
        text-align: left;
        gap: 0;
    }

    .main-menu a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-menu a::after {
        display: none;
    }

    .right-menu {
        padding: 20px;
        align-items: flex-start;
        gap: 20px;
    }
    
    .text-content {
        padding: 2rem;
    }

    .footer-container {
        flex-direction: column;
    }
    
    .footer-info {
        text-align: center;
    }
}
