

/* Start:/local/templates/main/assets/style.css?176217940731848*/
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00A693;
    --secondary: #004D40;
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --background: #FFFFFF;
    --card-bg: #F8FAFB;
    --border-color: #E5E9EB;
    --transition-speed: 300ms;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

body > div a {
    color: var(--primary);
    text-decoration: none;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-switcher a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.lang-switcher a.active {
    color: var(--primary);
    background: rgba(0, 166, 147, 0.1);
}

.lang-divider {
    width: 1px;
    height: 1rem;
    background: var(--border-color);
}

/* Navigation */
.navbar {
    position: sticky;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    top: 0;
}

.navbar.fixed {
	position: fixed;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand a {
    height: 3rem;
}

.nav-brand a img {
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    font-size: 0.9rem;
}

.nav-menu a:hover, .nav-menu a.selected {
    color: var(--primary);
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-menu > li:hover .submenu {
    display: block;
}

.submenu li {
    list-style: none;
    margin-bottom: 0.5rem;
}

.submenu li:last-child {
    margin-bottom: 0;
}

/* Hide submenu toggle by default */
.submenu-toggle, .nav-toggle {
    display: none;
}

/* Mobile Navigation Styles */
@media (max-width: 980px) {
    .navbar {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        padding: 1rem;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu > li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        padding: 1rem 0;
        display: block;
    }

    .submenu {
        position: static;
        display: block;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: var(--card-bg);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
        will-change: max-height;
    }

    .nav-menu > li:hover .submenu {
        display: block;
    }

    .nav-menu > li.active .submenu {
        max-height: 500px;
        padding: 0.5rem 0 0.5rem 1rem;
    }

    .submenu li {
        margin: 0;
        opacity: 0;
        transform: translateY(-8px);
        transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: calc(var(--item-index) * 50ms);
    }

    .nav-menu > li.active .submenu li {
        opacity: 1;
        transform: translateY(0);
    }

    .submenu a {
        padding: 0.75rem 0;
        display: block;
        font-size: 0.85rem;
    }

    /* Show submenu toggle only on mobile */
    .submenu-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 0.75rem;
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .toggle-icon {
        width: 12px;
        height: 12px;
        position: relative;
        display: block;
        transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    }

    .toggle-icon::before,
    .toggle-icon::after {
        content: '';
        position: absolute;
        background: var(--text-primary);
        transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    }

    .toggle-icon::before {
        width: 2px;
        height: 12px;
        left: 5px;
        top: 0;
    }

    .toggle-icon::after {
        width: 12px;
        height: 2px;
        left: 0;
        top: 5px;
    }

    .submenu-toggle.active .toggle-icon::before {
        transform: scaleY(0);
    }

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

    .hamburger {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        position: relative;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        top: 8px;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .hamburger::after {
        transform: translateY(-8px) rotate(-45deg);
    }

    .lang-switcher {
        margin: 1rem 0;
        justify-content: center;
    }
}

/* Mission Page Styles */
.mission-hero {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2070&h=1200');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.mission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.mission-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.mission-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.mission-section {
    padding: 6rem 2rem;
    background: var(--background);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mission-block h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.mission-block p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Management Page Styles */
.management-section {
    padding: 6rem 2rem;
    background: var(--background);
}

.management-container {
    max-width: 1200px;
    margin: 0 auto;
}

.management-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.executive-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.executive-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.executive-card:hover .executive-image img {
    transform: scale(1.05);
}

.executive-info {
    padding: 2rem;
}

.executive-info h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.executive-info h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.executive-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.executive-education {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.executive-education h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.executive-education ul {
    list-style: none;
}

.executive-education li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* History Page Styles */
.history-section {
    padding: 6rem 2rem;
    background: var(--background);
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 6rem;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.timeline-content {
    width: calc(50% - 3rem);
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.achievement-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Licenses Page Styles */
.licenses-section {
    padding: 6rem 2rem;
    background: var(--background);
}

.licenses-container {
    max-width: 1200px;
    margin: 0 auto;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.license-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.license-card a {
    color: var(--primary);
    text-decoration: none;
}

.license-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.license-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.license-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.license-card:hover .license-image img {
    transform: scale(1.05);
}

.license-info {
    padding: 2rem;
}

.license-info h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.license-number {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.license-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.license-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.certifications-section {
    margin-bottom: 6rem;
}

.certifications-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.certification-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.certification-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.certification-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certification-item h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.certification-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.certification-item p:has(a) {
    margin-top: 1rem;
}

.certification-item a {
    color: var(--primary);
    text-decoration: none;
}

.awards-section {
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.awards-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.awards-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.award-year {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    min-width: 100px;
}

.award-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.award-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Service Page Styles */
.service-hero {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1553729459-efe14ef6055d?auto=format&fit=crop&q=80&w=2070&h=1200');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.service-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.service-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.service-section {
    padding: 6rem 2rem;
    background: var(--background);
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.service-intro p, 
.service-intro ol li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.service-intro ol {
	list-style-position: inside;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.benefit-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 6rem;
}

.service-features h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
	margin-bottom: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.feature-card ul {
    list-style: none;
}

.feature-card a {
    color: var(--primary);
    text-decoration: none;
}

.feature-card ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-conditions {
    margin-bottom: 6rem;
}

.service-conditions h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
	margin-bottom: 2rem;
}

.condition-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.condition-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.condition-item.premium {
    background: var(--primary);
    color: white;
}

.condition-item.premium h3,
.condition-item.premium .condition-price,
.condition-item.premium ul li {
    color: white;
}

.condition-item ul {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1rem;
}
.condition-item ul li:nth-child(odd) {
	color: var(--text-primary);
	text-align: left;
}
.condition-item ul li:nth-child(even) {
	text-align: right;
}

.condition-item h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.condition-price {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.condition-item ul {
    list-style: none;
    margin-bottom: 2rem;
}

.condition-item ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.service-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.service-cta h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.service-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    width: 100%;
    padding: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 2rem;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-nav {
    position: absolute;
    bottom:  2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background: white;
}

/* Services Section */
.services {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--background);
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    flex: 1;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
}

/* News Section */
.news {
    padding: 6rem 2rem;
    background: var(--card-bg);
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-item {
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.news-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.news-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--secondary);
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto 6rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Social Links */
.social-links {
    margin-bottom: 6rem;
}

.social-links h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.social-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Office Locations */
.office-locations {
    margin-bottom: 6rem;
}

.office-locations h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

/* Buttons */
.cta-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 166, 147, 0.2);
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 166, 147, 0.3);
}

.cta-button[disabled] {
	cursor: not-allowed;
	filter: grayscale(100%);
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Animations */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 980px) {
    .navbar {
        padding: 1rem;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .services {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .news h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .mission-hero {
        height: 50vh;
    }

    .mission-content h1 {
        font-size: 2.5rem;
    }

    .mission-content p {
        font-size: 1.1rem;
    }

    .mission-block h2 {
        font-size: 2rem;
    }

    .mission-block p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-date {
        left: 0;
        transform: none;
    }

    .timeline-content {
        width: calc(100% - 2rem);
        margin-left: 2rem;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 2rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .management-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .executive-image {
        height: 300px;
    }

    .executive-info {
        padding: 1.5rem;
    }

    .executive-info h2 {
        font-size: 1.5rem;
    }

    .executive-info h3 {
        font-size: 1rem;
    }

    .licenses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .license-image {
        height: 200px;
    }

    .license-info {
        padding: 1.5rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .award-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .award-year {
        font-size: 1.5rem;
    }

    .service-hero {
        height: 50vh;
    }

    .service-content h1 {
        font-size: 2.5rem;
    }

    .service-content p {
        font-size: 1.1rem;
    }

    .benefits-grid,
    .features-grid,
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-intro h2,
    .service-features h2,
    .service-conditions h2,
    .service-cta h2 {
        font-size: 2rem;
    }

    .service-intro p,
    .service-cta p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

	.condition-item ul {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.condition-item ul li:nth-child(n) {
		text-align: center;
		margin: 0;
	}

	.condition-item ul li:nth-child(even) {
		margin-bottom: 2rem;
	}
}
/* End */
/* /local/templates/main/assets/style.css?176217940731848 */
