@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #0272ba;
    --primary-light: #03a9f4;
    --dark: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --gray: #555;
    --gray-light: #888;
    --gray-bg: #f2f2f2;
    --white: #fff;
    --radius: 8px;
    --transition: 0.3s ease;
}

body {
    font-family: "Montserrat", sans-serif;
    padding-top: 75px;
    color: #333;
    line-height: 1.6;
}

* {
    box-sizing: border-box;
    outline: none;
}

label.error {
    display: none !important;
}

.error {
    border-color: red !important;
}

.valid {
    border-color: green !important;
}

button,
a {
    cursor: pointer;
    transition: var(--transition);
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

.flex {
    display: flex;
}

.row.flex::before,
.row.flex::after {
    display: none;
}

.flex.center {
    align-items: center;
}

.box {
    margin-bottom: -30px;
}

.box>div {
    margin-bottom: 30px;
}

.container {
    width: 100%;
    max-width: 1080px;
}

header {
    padding: 25px 0;
    position: fixed;
    top: 0;
    background-color: var(--white);
    z-index: 100;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    max-width: 190px;
    height: auto;
}

.top_nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.top_nav a {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.top_nav a:hover {
    color: var(--primary) !important;
}

.top_nav li {
    position: relative;
}

.top_nav li ul {
    position: absolute;
    background-color: var(--white);
    border-top: 3px solid var(--primary);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    top: calc(100% + 15px);
    min-width: 160px;
    border-radius: 0 0 var(--radius) var(--radius);
}

.top_nav li ul li {
    padding: 0;
}

.top_nav li ul a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    font-weight: 500;
}

.top_nav li ul a:hover {
    background-color: var(--gray-bg);
}

.top_nav li:hover ul {
    display: flex;
}

.top_nav li:hover::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 25px;
    width: 100%;
}

.top_nav li:last-child > a {
    display: flex;
    align-items: center;
    position: relative;
    gap: 4px;
}

.top_nav > li:last-child > a::after {
    content: '';
    display: block;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.70711 9.71069C5.31658 10.1012 5.31658 10.7344 5.70711 11.1249L10.5993 16.0123C11.3805 16.7927 12.6463 16.7924 13.4271 16.0117L18.3174 11.1213C18.708 10.7308 18.708 10.0976 18.3174 9.70708C17.9269 9.31655 17.2937 9.31655 16.9032 9.70708L12.7176 13.8927C12.3271 14.2833 11.6939 14.2832 11.3034 13.8927L7.12132 9.71069C6.7308 9.32016 6.09763 9.32016 5.70711 9.71069Z" fill="%230272ba"></path></svg>');
    background-repeat: no-repeat;
    background-position: center;
    width: 18px;
    height: 18px;
    background-size: 16px;
    transition: transform var(--transition);
}

.top_nav > li:last-child:hover > a::after {
    transform: rotate(180deg);
}

.top_nav li.has-dropdown > a {
    display: flex;
    align-items: center;
    position: relative;
    gap: 4px;
}

.top_nav li.has-dropdown > a::after {
    content: '';
    display: block;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.70711 9.71069C5.31658 10.1012 5.31658 10.7344 5.70711 11.1249L10.5993 16.0123C11.3805 16.7927 12.6463 16.7924 13.4271 16.0117L18.3174 11.1213C18.708 10.7308 18.708 10.0976 18.3174 9.70708C17.9269 9.31655 17.2937 9.31655 16.9032 9.70708L12.7176 13.8927C12.3271 14.2833 11.6939 14.2832 11.3034 13.8927L7.12132 9.71069C6.7308 9.32016 6.09763 9.32016 5.70711 9.71069Z" fill="%230272ba"></path></svg>');
    background-repeat: no-repeat;
    background-position: center;
    width: 18px;
    height: 18px;
    background-size: 16px;
    transition: transform var(--transition);
}

.top_nav li.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.intro {
    background-image: url(../img/background_main.jpg);
    background-position: center;
    background-size: cover;
    min-height: calc(100dvh - 90px);
    padding-top: 60px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
}

.intro_title {
    text-align: center;
    background-color: rgb(0 0 0 / 72%);
    padding: 60px 50px;
    border-radius: var(--radius);
    max-width: 900px;
    margin: 0 auto;
}

.intro_title h1 {
    color: var(--white);
    margin: 0;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.btn {
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn.bordered {
    text-transform: uppercase;
    border: 2px solid var(--white);
    padding: 14px 32px;
    font-size: 14px;
    color: var(--white);
    background-color: transparent;
}

.btn.bordered:hover {
    background-color: var(--white);
    color: var(--primary) !important;
}

.divider1 {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMzVweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xMjgwIDE0MFYwSDBsMTI4MCAxNDB6IiBmaWxsLW9wYWNpdHk9Ii41Ii8+PHBhdGggZD0iTTEyODAgOThWMEgwbDEyODAgOTh6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 100% 135px;
    bottom: 0;
    height: 135px;
    transform: rotateY(180deg) rotateX(180deg);
    margin-top: -135px;
    position: relative;
    z-index: 10;
    pointer-events: none;
    margin-bottom: 20px;
}

.divider2 {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMTJweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0wIDB2MTQwaDEyODBMMCAweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0wIDQydjk4aDEyODBMMCA0MnoiLz48L2c+PC9zdmc+);
    background-size: 100% 112px;
    top: 0;
    height: 112px;
    z-index: 1;
    transform: rotateY(180deg) rotateX(180deg);
}

.divider3 {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMzVweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiMwMjcyYmEiPjxwYXRoIGQ9Ik0wIDB2MTQwaDEyODBMMCAweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0wIDQydjk4aDEyODBMMCA0MnoiLz48L2c+PC9zdmc+);
    background-size: 100% 135px;
    bottom: 0;
    height: 135px;
    z-index: 1;
}

.divider4 {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMzVweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiMwMjcyYmEiPjxwYXRoIGQ9Ik0xMjgwIDE0MFYwSDBsMTI4MCAxNDB6IiBmaWxsLW9wYWNpdHk9Ii41Ii8+PHBhdGggZD0iTTEyODAgOThWMEgwbDEyODAgOTh6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 100% 135px;
    top: 0;
    height: 135px;
    z-index: 1;
    position: relative;
}

.section.cards {
    padding: 60px 0;
    padding-bottom: 120px;
    background-color: var(--white);
}

.cards_flex {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.card_item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.card_item:nth-child(even) {
    flex-direction: row-reverse;
}

.card_img {
    flex: none;
    width: 380px;
    height: 260px;
    background-position: center;
    background-size: cover;
    border-radius: var(--radius);
}

.card_desc {
    flex: 1;
}

.card_desc h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin: 0;
    margin-bottom: 16px;
}

.card_desc p {
    margin: 0;
    line-height: 1.7;
    color: var(--gray);
    font-size: 15px;
}

.section.benefits {
    background-color: var(--gray-bg);
    padding-bottom: 140px;
}

.section.benefits .container {
    margin-top: 70px;
    margin-bottom: 70px;
}

.benefits_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 60px;
}

.benefit_item {
    width: calc(50% - 30px);
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: var(--radius);
    transition: transform var(--transition);
}

.benefit_item img {
    display: block;
    margin: 0 auto;
    height: 100px;
    width: auto;
    max-width: 100%;
    margin-bottom: 24px;
}

.benefit_item h3 {
    color: var(--primary);
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 14px;
    font-weight: 700;
}

.benefit_item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
}

.heading {
    text-align: center;
    margin-bottom: 60px;
}

.heading h2 {
    margin: 0;
    color: var(--primary);
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.heading p {
    margin: 0;
    margin-top: 24px;
    line-height: 1.7;
    font-size: 17px;
    color: var(--gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section.focus_text {
    position: relative;
    margin-top: -136px;
    z-index: 10;
}

.section.focus_text .focus_inner {
    background-color: var(--primary);
    padding: 80px 0;
}

.focus_inner .heading {
    margin: 0;
}

.focus_inner .heading h2 {
    color: var(--white);
    font-size: 38px;
}

.focus_inner .heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-top: 28px;
}

footer {
    position: relative;
    margin-top: -135px;
    padding-top: 105px;
    background-color: var(--dark);
}

footer.footer_no_margin {
    margin-top: 0;
    padding-top: 0;
}

.footer_main {
    padding: 70px 0 50px;
    position: relative;
}

.footer_content {
    display: flex;
    justify-content: center;
}

.footer_info {
    text-align: center;
    max-width: 500px;
}

.footer_company {
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 35px;
    position: relative;
    padding-bottom: 20px;
}

.footer_company::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer_contact {
    margin-bottom: 30px;
}

.contact_item {
    margin-bottom: 14px;
}

.contact_label {
    display: block;
    color: var(--gray-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact_value {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

a.contact_value:hover {
    color: var(--primary) !important;
}

.footer_social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.social_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--dark-lighter);
    border-radius: 10px;
    color: var(--white);
    transition: all var(--transition);
}

.social_link:hover {
    background-color: var(--primary);
}

.social_link svg {
    width: 20px;
    height: 20px;
}

.social_link:hover svg {
    color: var(--white) !important;
}

.footer_bar {
    background-color: #111;
    padding: 18px 0;
    border-top: 1px solid var(--dark-lighter);
}

.footer_bar_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--gray-light);
    font-size: 13px;
}

.footer_bar_content strong {
    color: var(--white);
}

.footer_bar_content a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition);
}

.footer_bar_content a:hover {
    color: var(--primary) !important;
}

.footer_bar_content .separator {
    color: #444;
    margin: 0 6px;
}

.adv_hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}

.adv_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.adv_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 72%);
    z-index: 2;
}

.adv_hero .container {
    position: relative;
    z-index: 3;
}

.adv_hero_content {
    text-align: center;
    color: var(--white);
}

.adv_hero_content h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 50px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.adv_types {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.adv_type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    transition: transform var(--transition);
}

.adv_type:hover {
    color: var(--white) !important;
}

.adv_type_icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: background var(--transition);
}

.adv_type:hover .adv_type_icon {
    background: rgba(255, 255, 255, 0.2);
}

.adv_type_icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.adv_type span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.adv_section {
    padding: 100px 0;
}

.adv_section_alt {
    background-color: var(--gray-bg);
}

.adv_block {
    display: flex;
    gap: 60px;
}

.adv_block_reverse {
    flex-direction: row-reverse;
}

.adv_block_img {
    flex: 0 0 480px;
    max-width: 480px;
}

.adv_block_img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    position: sticky;
    top: 100px;
}

.adv_block_content {
    flex: 1;
}

.adv_block_badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.adv_block_content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.3;
}

.adv_subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px !important;
}

.adv_block_content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.adv_block_content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 16px;
}

.adv_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adv_list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--gray);
    line-height: 1.6;
}

.adv_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.adv_section + footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.top_nav a.active {
    color: var(--primary);
}

.contact_hero {
    background: #2f3437;
    padding: 80px 0;
    text-align: center;
}

.contact_hero_content h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
}

.contact_hero_content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact_info_section {
    padding: 80px 0;
    background: var(--white);
}

.contact_grid {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact_details {
    flex: 1;
}

.contact_details h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 32px;
}

.contact_info_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact_info_item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact_info_icon {
    flex: none;
    width: 48px;
    height: 48px;
    background: rgba(2, 114, 186, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact_info_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact_info_label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
    font-weight: 600;
}

.contact_info_value {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
}

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

.contact_map {
    flex: 0 0 500px;
    min-height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
}

.contact_map iframe {
    display: block;
}

.team_section {
    padding: 80px 0;
    background: var(--gray-bg);
}

.section_heading {
    text-align: center;
    margin-bottom: 50px;
}

.section_heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 12px;
}

.section_heading p {
    color: var(--gray);
    font-size: 16px;
    margin: 0;
}

.team_grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team_card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    max-width: 400px;
}

.team_card_avatar {
    width: 80px;
    height: 80px;
    background: rgba(2, 114, 186, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    overflow: hidden;
}

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

.team_card_content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}

.team_card_role {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.team_card_contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team_contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}

.team_contact:hover {
    color: var(--primary);
}

.team_contact svg {
    flex: none;
}

.contact_form_section {
    padding: 80px 0;
    background: var(--white);
}

.contact_form_wrapper {
    display: flex;
    background: var(--gray-bg);
    border-radius: var(--radius);
    overflow: hidden;
}

.contact_form_info {
    flex: 1;
    padding: 50px;
    background: #2f3437;
    color: var(--white);
}

.contact_form_info h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
}

.contact_form_info > p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 0 32px;
}

.contact_form_features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact_form_feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.contact_form_feature svg {
    flex: none;
    color: rgba(255, 255, 255, 0.9);
}

.contact_form {
    flex: 1.2;
    padding: 50px;
}

.form_group {
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--white);
}

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

.form_group input::placeholder,
.form_group textarea::placeholder {
    color: #aaa;
}

.form_group textarea {
    resize: vertical;
    min-height: 100px;
}

.form_row {
    display: flex;
    gap: 20px;
}

.form_row .form_group {
    flex: 1;
}

.form_checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.form_checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex: none;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
    flex: none;
}

.form_checkbox label {
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    width: calc(100% - 33px);
}

.form_checkbox label a {
    color: var(--primary);
}

.btn_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.btn_submit:hover {
    background: #015a94;
}

.btn_submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact_form_section + footer {
    margin-top: 0;
    padding-top: 0;
}

/* Form Messages */
.form_message {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.form_message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form_message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form_group.has-error input,
.form_group.has-error textarea,
.form_group.has-error select {
    border-color: #dc3545;
}

.form_group .field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Select dropdown styling */
.form_group select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.70711 9.71069C5.31658 10.1012 5.31658 10.7344 5.70711 11.1249L10.5993 16.0123C11.3805 16.7927 12.6463 16.7924 13.4271 16.0117L18.3174 11.1213C18.708 10.7308 18.708 10.0976 18.3174 9.70708C17.9269 9.31655 17.2937 9.31655 16.9032 9.70708L12.7176 13.8927C12.3271 14.2833 11.6939 14.2832 11.3034 13.8927L7.12132 9.71069C6.7308 9.32016 6.09763 9.32016 5.70711 9.71069Z" fill="%23555555"></path></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form_group select:focus {
    border-color: var(--primary);
    outline: none;
}

.form_group select option {
    padding: 10px;
}

/* Checkbox group styling */
.form_checkbox_group {
    margin-bottom: 20px;
}

.form_checkbox_group > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.checkbox_options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox_option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color var(--transition), background-color var(--transition);
    cursor: pointer;
}

.checkbox_option:hover {
    border-color: var(--primary);
    background-color: rgba(2, 114, 186, 0.02);
}

.checkbox_option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: none;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox_option label {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
}

.checkbox_option:has(input:checked) {
    border-color: var(--primary);
    background-color: rgba(2, 114, 186, 0.05);
}

.form_checkbox_group.has-error .checkbox_options {
    border: 1px solid #dc3545;
    border-radius: 6px;
    padding: 4px;
}

.form_checkbox_group .products-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 8px;
}

/* CTA Section */
.section_cta {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.cta_content h2 {
    color: var(--white);
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.3;
}

.cta_content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0 0 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta_content .btn {
    background: var(--white);
    color: var(--primary);
    padding: 16px 40px;
    font-size: 15px;
    text-transform: uppercase;
}

.cta_content .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Textový obsah (WYSIWYG) Component */
.textovy-obsah {
    padding: 60px 0 80px;
    background: var(--white);
}

.textovy-obsah__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.textovy-obsah__nadpis {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 40px;
    line-height: 1.3;
    text-transform: uppercase;
}

.textovy-obsah__content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

.textovy-obsah__content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 20px;
    line-height: 1.4;
}

.textovy-obsah__content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 16px;
    line-height: 1.4;
}

.textovy-obsah__content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 14px;
    line-height: 1.4;
}

.textovy-obsah__content p {
    margin: 0 0 20px;
}

.textovy-obsah__content p:last-child {
    margin-bottom: 0;
}

.textovy-obsah__content strong {
    color: var(--dark);
    font-weight: 700;
}

.textovy-obsah__content a {
    color: var(--primary);
    text-decoration: none;
}

.textovy-obsah__content a:hover {
    text-decoration: underline;
}

.textovy-obsah__content ul,
.textovy-obsah__content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.textovy-obsah__content ul {
    list-style-type: disc;
}

.textovy-obsah__content ol {
    list-style-type: decimal;
}

.textovy-obsah__content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.textovy-obsah__content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: var(--gray-bg);
    border-left: 4px solid var(--primary);
    font-style: italic;
}

.textovy-obsah__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.textovy-obsah__content th,
.textovy-obsah__content td {
    padding: 12px 16px;
    border: 1px solid #ddd;
    text-align: left;
}

.textovy-obsah__content th {
    background: var(--gray-bg);
    font-weight: 700;
    color: var(--dark);
}

.textovy-obsah + footer {
    margin-top: 0;
    padding-top: 0;
}

/* 404 Error Page */
.error-404 {
    min-height: calc(100vh - 75px - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-bg) 0%, var(--white) 100%);
}

.error-404__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-404__number {
    font-size: 180px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    opacity: 0.15;
    letter-spacing: -10px;
}

.error-404__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 20px;
    line-height: 1.2;
}

.error-404__text {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0 0 40px;
}

.error-404__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.error-404__btn:hover {
    background: #015a94;
    color: var(--white) !important;
}

.error-404__btn svg {
    transition: transform var(--transition);
}

.error-404__btn:hover svg {
    transform: translateX(-4px);
}

.error-404 + footer {
    margin-top: 0;
    padding-top: 0;
}

/* Gallery Section */
.gallery_section {
    padding: 80px 0;
}

.gallery_section .section_heading {
    text-align: center;
    margin-bottom: 50px;
}

.gallery_section .section_heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 12px;
}

.gallery_section .section_heading p {
    color: var(--gray);
    font-size: 16px;
    margin: 0 auto;
    max-width: 700px;
}

.gallery_grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.gallery_item {
    width: calc(25% - 20px);
    margin: 10px;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1 / 1;
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.gallery_item:hover img {
    transform: scale(1.05);
}

.gallery_item_overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 114, 186, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.gallery_item:hover .gallery_item_overlay {
    background: rgba(2, 114, 186, 0.7);
}

.gallery_item_overlay svg {
    color: var(--white);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity var(--transition), transform var(--transition);
}

.gallery_item:hover .gallery_item_overlay svg {
    opacity: 1;
    transform: scale(1);
}

.gallery_section + footer {
    margin-top: 0;
    padding-top: 0;
}
