
.b24-form .b24-form-sign-abuse {
	visibility:hidden !important;
}

.b24-form {
	text-align:left !important;
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    padding: 0;
}

.header-container {
    width: 100%;
    padding: 0 20px;
}

.footer-container {
    width: 100%;
    padding: 0 20px;
}

/* Neomorphism Utilities */
.neo-card {
    background: #f0f0f3;
    border-radius: 20px;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
}

.neo-inset {
    background: #f0f0f3;
    border-radius: 20px;
    box-shadow: 
        inset 20px 20px 60px #bebebe,
        inset -20px -20px 60px #ffffff;
}

.neo-button {
    background: linear-gradient(145deg, #f0f0f3, #cacaca);
    border-radius: 15px;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.neo-button:hover {
    box-shadow: 
        inset 20px 20px 60px #bebebe,
        inset -20px -20px 60px #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #f0f0f3, #cacaca);
    color: #2c3e50;
    box-shadow: 
        10px 10px 20px #ffffff,
        -10px -10px 20px #bebebe;
        box-shadow: rgba(24, 100, 168, 0.7) 10.0354px 10.0354px 20.0708px 0px, rgba(10, 147, 76, 0.6) -5.02124px -5.02124px 20.0708px 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        -15px -15px 30px #ffffff,
        15px 15px 30px #bebebe;
    text-decoration: none;
}

.btn:active {
    transform: translateY(0);
    box-shadow: 
        inset 8px 8px 16px #bebebe,
        inset -8px -8px 16px #ffffff;
}

.btn-primary {
    background: linear-gradient(145deg, rgba(10,147,76,1), rgba(24,100,168,1));
    color: white;
    box-shadow: 
        10px 10px 20px rgba(24,100,168,.7),
          -5px -5px 20px rgba(10,147,76,.6);
}

.btn-primary:hover {
    color: white;
    box-shadow: 
        15px 15px 30px rgba(24,100,168,.7),
        -8px -8px 30px rgba(10,147,76,.6);
}

.btn-secondary {
    background: linear-gradient(145deg, #6c757d, #5a6268);
    color: white;
    box-shadow: 
        10px 10px 20px #495057,
        -10px -10px 20px #868e96;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2d8034;
    color: #2d8034;
    box-shadow: none;
}

.btn-outline:hover {
    background: #2d8034;
    background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    /* background: rgba(240, 240, 243, 0.95); */
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    padding: .6rem 0;
}

.header-container {
    width: 100%;
    padding: 0 20px;
}

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

.navbar-brand .logo {
    height: 48px;
    width: auto;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.navbar-nav li {
    list-style: none;
}

.navbar-nav a,
.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #2d8034;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d8034;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover {
    background: rgba(45, 128, 52, 0.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(240, 240, 243, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
    list-style: none;
}

.mobile-nav-menu a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(45, 128, 52, 0.05);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.15),
                inset -3px -3px 6px rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-menu a:hover {
    background: #2d8034;
    color: white;
    box-shadow: 3px 3px 12px rgba(45, 128, 52, 0.4),
                -3px -3px 12px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.green-letters {
    color: #2d8034;
    font-size: 1.1em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
}

.hero-additional-img {
    position: absolute;
    top: 140px;
    left: -50px;
    width: 540px;
    height: auto;
    border-radius: 20px;
    background: transparent;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: transparent;
    animation: rotateOnLoad 2s ease-out;
    opacity: .8;
}

/* Section Styles */
section {
    padding: 80px 0 70px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--section-title-color, #2c3e50);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about {
    background: #f8f9fa;
}

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

/* Main page about section cards */
.about .about-card {
    background: #f0f0f3;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    transition: transform 0.3s ease;
}

.about .about-card:hover {
    transform: translateY(-10px);
}

/* Main page about section card icons */
.about .card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(145deg, rgba(10,147,76,1), rgba(24,100,168,1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 8px 8px 16px rgba(30,125,210,0.4), -8px -8px 16px rgba(8,117,61,0.4);
}

.card-title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.card-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Events Section */
.events {
    background: #f8f9fa;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, .3fr));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    align-items: stretch;
}

/* Event card item wrapper allows button outside the link */
.events .event-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

/* Make the whole card clickable */
.events .event-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Ensure no blue color or underline for card link in all states */
.events .event-card-link:link,
.events .event-card-link:visited,
.events .event-card-link:hover,
.events .event-card-link:focus,
.events .event-card-link:active {
    text-decoration: none;
    color: inherit;
}

.event-card {
    background: #f0f0f3;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 594px;
}

.event-image {
    height: 230px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

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

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

.event-body {
    padding: 30px;
    display: flex;
    gap: 20px;
    flex: 1;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        25px 25px 75px #bebebe,
        -25px -25px 75px #ffffff;
}



.event-date {
    background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
    color: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
    
    box-shadow: 10px 10px 20px rgba(24, 100, 168, .7), -5px -5px 20px rgba(10, 147, 76, .6);
}

.date-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}

.date-year {
    display: block;
    font-size: 10px;
    font-weight: 400;
    margin-top: 3px;
    opacity: 0.8;
}

.event-content {
    flex: 1;
}

.event-title {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.event-location {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-location::before {
    content: '📍';
    font-size: 16px;
}

.event-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

/* News Section */
.news {
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, .3fr));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

/* Main page news section cards */
.news .news-card {
    background: #f0f0f3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        10px 10px 30px #d1d1d4,
        -10px -10px 30px #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.news .news-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        15px 15px 40px #d1d1d4,
        -15px -15px 40px #ffffff;
}

.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    margin: -1px -1px 0 -1px;
    border-radius: 20px 20px 0 0;
}

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

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

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #2d8034;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date::before {
    content: '📅';
    font-size: 18px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #2d8034;
}

.news-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.news-link {
    color: #2d8034;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-link:hover {
    color: #245a29;
    transform: translateX(5px);
}

.news-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.news-link:hover::after {
    transform: translateX(3px);
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--bg-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Partners page specific styles - 2 columns layout */
body.page-template-template-partner .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 100%;
    margin: 50px auto 0;
}

.partner-card {
    background: #f0f0f3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        15px 15px 40px #d1d1d4,
        -15px -15px 40px #ededed;
    transition: all 0.3s ease;
    position: relative;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        20px 20px 50px #d1d1d4,
        -20px -20px 50px #ededed;
}

.partner-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 25px;
    height: 100%;
}

.partner-logo {
    text-align: center;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 160px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-info {
    text-align: center;
}

.partner-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.4;
    margin: 0;
}

/* Subscription Section */
.subscription {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(45, 128, 52, 0.85) 0%,rgb(36 80 90 / 90%) 100%),
        url('../img/bg.webp') center/cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.subscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.subscription::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M18 18 L22 21 L26 18 L26 24 L18 24 Z M18 18 L22 21 L26 18" stroke="rgba(255,255,255,0.1)" stroke-width="0.3" fill="rgba(255,255,255,0.05)"/><path d="M78 38 L82 41 L86 38 L86 44 L78 44 Z M78 38 L82 41 L86 38" stroke="rgba(255,255,255,0.08)" stroke-width="0.2" fill="rgba(255,255,255,0.03)"/><path d="M38 78 L42 81 L46 78 L46 84 L38 84 Z M38 78 L42 81 L46 78" stroke="rgba(255,255,255,0.06)" stroke-width="0.25" fill="rgba(255,255,255,0.02)"/></svg>');
    animation: float 20s infinite linear;
    z-index: 2;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.subscription-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscription-columns {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
}

.subscription-content .subscription-title + .subscription-text,
.subscription-content .subscription-title + .subscription-form-wrapper {
    margin-top: 40px;
}

.subscription-content .subscription-text {
    flex: 0 0 50%;
}

.subscription-content .subscription-form-wrapper {
    flex: 0 0 50%;
}

.subscription-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    text-align: center;
      line-height: 1.5;
}

.subscription-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    text-align: left;
}

.subscription-text {
    flex: 1;
}
.subscription-form-wrapper a{
   color: #fff;
   margin-bottom: 5px;
}
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
padding-right: 4px;
padding-bottom: 5px;
}
.subscription-form-wrapper {
    flex: 0 0 50%;
    max-width: 440px;
    box-sizing: border-box;
}
.wpcf7-form-control-wrap {
  display: contents; /* span исчезает, но внутренний input остаётся */
}
.checkboxes-mod a{
    color: rgba(24, 100, 168, 1);
}
.subscription-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0px 0;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.subscription-list li {
    padding: 8px 0;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.subscription-list li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
    flex-shrink: 0;
}

.subscription-form {
    max-width: 100%;
    margin: 0;
}

.subscription .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: row;
}

.subscription .btn-primary {
    flex-shrink: 0;
    min-width: 120px;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 18px 30px;
}

.subscription-input {
    width: 100%;
    max-width: 350px;
    padding: 20px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.subscription-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.subscription-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.subscription-note {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 15px;
    font-style: italic;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2d8034;
    border-color: #2d8034;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    width: 100%;
}

.footer-container {
    width: 100%;
    padding: 0 20px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(24, 100, 168, 1), #245a29);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section{
    max-width: 433px;
}
.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #2d8034;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

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

.footer-menu li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
}

.footer-menu a:hover {
    color: #2d8034;
    transform: translateX(5px);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.contact-item i {
    color: #2d8034;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2d8034;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 24px;
}

.social-link:hover {
    background: #2d8034;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(45, 128, 52, 0.4);
}

.social-link:has(.fa-vk):hover {
    background: #4680C2;
    box-shadow: 0 6px 18px rgba(70, 128, 194, 0.4);
    color: white;
}

.social-link:has(.fa-play-circle):hover {
    background: #000000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 14px;
}

.footer-note {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 13px;
    font-style: italic;
}

/* Desktop styles */
@media (max-width: 1301px) {
    .hero {
        min-height: 100vh;
    }
    .news-title {
    font-size: 16px;
    }
    .event-title {
    font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
 
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .navbar-brand .logo {
    height: 44px;
}
.hero-additional-img {
    position: absolute;
    top: 24px;
    left: 9px;
    width: 340px;
}
.section-header {
    margin-bottom: 2rem;
}
.news-grid, .events-grid {
margin-top: 30px;
}
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .navbar-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 50px;
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .hero-actions {
        justify-content: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }

    .about-grid,
    .events-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about,
    .events,
    .news,
    .partners {
        padding: 60px 0;
    }
    
    .about .about-card {
        padding: 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    /* Partners page mobile styles */
    body.page-template-template-partner .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .partner-card {
        min-height: 120px;
        height: auto;
    }
    
    .partner-link {
        padding: 15px;
    }
    
    .partner-logo {
        height: 90px;
        margin-bottom: 10px;
    }
    
    .partner-logo img {
        max-width: 180px;
        max-height: 90px;
    }
    

    
    .partner-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .event-date {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .subscription {
        padding: 50px 0;
    }
    
    .subscription-content {
        padding: 30px 20px;
    }
    
    .subscription-title {
        font-size: 28px;
    }
    
    .subscription-subtitle {
        font-size: 16px;
    }

    .subscription-list li {
        font-size: 15px;
        padding: 6px 0;
    }

    .subscription-list li:before {
        font-size: 14px;
        margin-right: 8px;
    }

    .subscription-columns {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-top: 25px;
    }
    
    .subscription-text {
        flex: none;
    }
    
    .subscription-form-wrapper {
        flex: none;
    }
    

    
    .subscription-subtitle {
        text-align: center;
    }
    
    .subscription-list {
        text-align: center;
    }
    
    .subscription .form-group {
        flex-direction: column;
        gap: 15px;
    }

    .form-input {
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-actions {
        gap: 12px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .about,
    .events,
    .news,
    .partners {
        padding: 50px 0 30px;
    }
    
    .about .about-card,
    .event-card,
    .news .news-card {
        padding: 15px;
    }
    .event-body {
        padding: 22px;
    }
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    /* Partners page small mobile styles */
    body.page-template-template-partner .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .partner-card {
        min-height: 100px;
    }
    
    .partner-link {
        padding: 12px;
    }
    
    .partner-logo {
        height: 75px;
        margin-bottom: 8px;
    }
    
    .partner-logo img {
        max-width: 150px;
        max-height: 75px;
    }
    

    
    .partner-description {
        font-size: 0.75rem;
    }
    
    .subscription {
        padding: 40px 0;
    }
    
    .subscription-content {
        padding: 25px 15px;
    }
    
    .subscription-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .subscription-columns {
        gap: 25px;
        margin-top: 20px;
    }
    
    .form-input {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
   header .btn {
        padding: 10px 12px;
        font-size: 12px;
        top: -5px;
        position: relative;
    }
    .btn-large {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Animations */
 @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
@keyframes rotateOnLoad {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} */

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling offset for fixed header */
html {
    scroll-padding-top: 80px;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-input:focus {
    outline: 2px solid #2d8034;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .neo-card,
    .about-card,
    .event-card,
    .news-card,
    .partner-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #f0f0f3;
    border-radius: 20px;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.3),
        -20px -20px 60px rgba(255, 255, 255, 0.8);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    transform: scale(1.1);
}

.modal-body {
    padding: 20px 30px 30px;
}

.modal-subtitle {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: #e8e8e8;
    box-shadow: 
        inset 8px 8px 16px #d1d1d1,
        inset -8px -8px 16px #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    outline: none;
}

.modal .form-group input:focus,
.modal .form-group select:focus,
.modal .form-group textarea:focus {
    box-shadow: 
        inset 4px 4px 8px #d1d1d1,
        inset -4px -4px 8px #ffffff,
        0 0 0 3px rgba(46, 204, 113, 0.2);
}

.modal .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 10px;
}

.modal .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
    gap: 10px;
}

.form-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 15px;
    text-align: center;
}

/* Modal checkbox styles */
.modal .form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.modal .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
}

.modal .checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.modal .checkmark {
    width: 18px;
    height: 18px;
    background: #e8e8e8;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    box-shadow: 
        inset 4px 4px 8px #d1d1d1,
        inset -4px -4px 8px #ffffff;
}

.modal .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2d8034;
    border-color: #2d8034;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.2),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.modal .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* News Article Page Styles */
.news-article-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 90px 20px;
}

.news-article-page__header {
    text-align: center;
    margin-bottom: 40px;
}

.news-article-page__title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.news-article-page__meta {
    margin-bottom: 30px;
}

.news-article-page__date {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.news-article-page__featured-image {
    margin-bottom: 40px;
    text-align: center;
}

.news-article-page__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.news-article-page__content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 50px;
}

.news-article-page__content p {
    margin-bottom: 20px;
}

.news-article-page__content h2,
.news-article-page__content h3,
.news-article-page__content h4 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-article-page__content h2 {
    font-size: 28px;
}

.news-article-page__content h3 {
    font-size: 24px;
}

.news-article-page__content h4 {
    font-size: 20px;
}

.news-article-page__content ul,
.news-article-page__content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.news-article-page__content li {
    margin-bottom: 8px;
}

.news-article-page__content blockquote {
    border-left: 4px solid #007cba;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.news-article-page__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.news-article-page__navigation {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.news-article-page__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, rgba(10,147,76,1), rgba(24,100,168,1));
    color: white;
    box-shadow: 
        10px 10px 20px rgba(24,100,168,.7),
          -5px -5px 20px rgba(10,147,76,.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-article-page__back:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        15px 15px 30px rgba(24,100,168,.7),
        -8px -8px 30px rgba(10,147,76,.6);
    text-decoration: none;
}

@media (max-width: 768px) {
    .news-article-page {
        padding: 40px 15px;
    }
    
    .news-article-page__title {
        font-size: 32px;
    }
    
    .news-article-page__content {
        font-size: 16px;
    }
    
    .news-article-page__content h2 {
        font-size: 24px;
    }
    
    .news-article-page__content h3 {
        font-size: 20px;
    }
    
    .news-article-page__content h4 {
        font-size: 18px;
    }
}

/* News Page Styles */
.news-page {
    padding: 60px 0;
}

.news-page__title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}


/* News page cards */
.news-page .news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-page .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-card__image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.news-card:hover .news-card__img {
    transform: scale(1.05);
}

.news-card__content {
    padding: 25px;
}

.news-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card__title a:hover {
    color: #007cba;
}

.news-card__meta {
    margin-bottom: 15px;
}

.news-card__date {
    color: #666;
    font-size: 14px;
}

.news-card__excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-card__link {
    display: inline-block;
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-card__link:hover {
    color: #005a87;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

@media (max-width: 768px) {
    .news-page__title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card__content {
        padding: 20px;
    }
}

/* About Company Page Styles */
.about-company-page {
    padding: 0;
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero__content {
    flex: 1;
}

.about-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-hero__subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-hero__stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero__image {
    flex: 1;
}

.about-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* About company page cards */
.about-company-page .about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-company-page .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* About company page card icons */
.about-company-page .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(10,147,76,1), rgba(24,100,168,1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 8px 8px 16px rgba(30,125,210,0.4), -8px -8px 16px rgba(8,117,61,0.4);
}

.about-company-page .card-icon i {
    font-size: 2rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.card-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

.mission-vision {
    padding: 80px 0;
 
}

.mission-vision__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.mission-icon,
.vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(10,147,76,1), rgba(24,100,168,1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 8px 8px 16px rgba(30,125,210,0.4), -8px -8px 16px rgba(8,117,61,0.4);
}

.mission-icon i,
.vision-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-title,
.vision-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
}

.mission-description,
.vision-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
}

.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #28a745;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, rgba(10,147,76,1), rgba(24,100,168,1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 8px 8px 16px rgba(30,125,210,0.4), -8px -8px 16px rgba(8,117,61,0.4);
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.history {
    padding: 80px 0;
    background: #f8f9fa;
}

.history-timeline {
    margin-top: 50px;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #28a745, #20c997);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.timeline-year {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, rgba(10,147,76,1), rgba(24,100,168,1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 8px 8px 16px rgba(30,125,210,0.4), -8px -8px 16px rgba(8,117,61,0.4);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 40px;
    position: relative;
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
}

.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #28a745;
}

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

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.member-position {
    font-size: 1rem;
    color: #28a745;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    color: #6c757d;
    line-height: 1.6;
}

.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.cta-description {
    font-size: 1.25rem;
    color: #ecf0f1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About company page large buttons */
.about-company-page .btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Responsive Design for About Page */
@media (max-width: 1200px) {
    .about-hero {
        gap: 40px;
    }
    
    .about-hero__stats {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .mission-vision__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-content {
        margin: 20px 0 0 0;
    }
    
    .history-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-hero__title {
        font-size: 2.5rem;
    }
    
    .about-hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-company-page .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== SINGLE EVENT PAGE STYLES ===== */

/* Event Background Image */
.event-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Event Hero Section */
.event-hero {
    background: linear-gradient(135deg, rgba(240, 240, 243, 0.95), rgba(255, 255, 255, 0.9));
    padding: 120px 0 80px;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(10, 147, 76, 0.1), rgba(24, 100, 168, 0.1));
    z-index: -1;
}

.event-hero__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.event-hero__main {
    background: #f0f0f3;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
}

.event-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-hero__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.event-meta-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 
        inset 5px 5px 10px #d1d1d4,
        inset -5px -5px 10px #ffffff;
}

.event-meta-item i {
    font-size: 24px;
    color: #2d8034;
    margin-bottom: 10px;
    display: block;
}

.event-meta-item strong {
    display: block;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 5px;
}

.event-meta-item span {
    color: #6c757d;
    font-size: 14px;
}

.event-hero__description {
    color: #6c757d;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.event-hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.event-hero__sidebar {
    background: #f0f0f3;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.event-sidebar__title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.event-sidebar__info {
    margin-bottom: 30px;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(108, 117, 125, 0.2);
}

.event-info-item:last-child {
    border-bottom: none;
}

.event-info-item i {
    font-size: 20px;
    color: #2d8034;
    width: 25px;
    text-align: center;
}

.event-info-item .info-content {
    flex: 1;
}

.event-info-item strong {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 2px;
}

.event-info-item span {
    color: #6c757d;
    font-size: 14px;
}

.event-price {
    background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
    color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 10px 10px 20px rgba(24, 100, 168, .7), -5px -5px 20px rgba(10, 147, 76, .6);
}

.event-price__amount {
    font-size: 32px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.event-price__label {
    font-size: 14px;
    opacity: 0.9;
}

/* Event Statistics */
.event-stats {
    background: #f8f9fa;
    padding: 80px 0;
}

.event-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.event-stat-card {
    background: #f0f0f3;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        15px 15px 40px #bebebe,
        -15px -15px 40px #ffffff;
    transition: all 0.3s ease;
}

.event-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        20px 20px 50px #bebebe,
        -20px -20px 50px #ffffff;
}

.event-stat-card__icon {
    font-size: 48px;
    color: #2d8034;
    margin-bottom: 20px;
}

.event-stat-card__number {
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
    display: block;
}

.event-stat-card__label {
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Event Content Sections */
.event-content-section {
    padding: 80px 0;
}

.event-content-section:nth-child(even) {
    background: #f8f9fa;
}

.event-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.event-section__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2d8034, #1864a8);
    border-radius: 2px;
}

.event-content__text {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 30px;
}

.event-content__text p {
    margin-bottom: 20px;
}

.event-content__list {
    background: #f0f0f3;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        inset 10px 10px 20px #d1d1d4,
        inset -10px -10px 20px #ffffff;
    margin-bottom: 30px;
}

.event-content__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-content__list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(108, 117, 125, 0.2);
    position: relative;
    padding-left: 30px;
}

.event-content__list li:last-child {
    border-bottom: none;
}

.event-content__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    color: #2d8034;
    font-weight: bold;
    font-size: 18px;
}

/* Event Target Audience */
.event-audience {
    background: linear-gradient(135deg, rgba(240, 240, 243, 0.95), rgba(255, 255, 255, 0.9));
    padding: 80px 0;
}

.event-audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.audience-card {
    background: #f0f0f3;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 
        15px 15px 40px #bebebe,
        -15px -15px 40px #ffffff;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        20px 20px 50px #bebebe,
        -20px -20px 50px #ffffff;
}

.audience-card__icon {
    font-size: 48px;
    color: #2d8034;
    margin-bottom: 20px;
}

.audience-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.audience-card__description {
    color: #6c757d;
    line-height: 1.6;
}

/* Event Pricing */
.event-pricing {
    background: #f8f9fa;
    padding: 80px 0;
}

.event-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: #f0f0f3;
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(10, 147, 76, 0.1), rgba(24, 100, 168, 0.1));
}

.pricing-card.featured::before {
    content: 'Рекомендуем';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #2d8034, #1864a8);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        25px 25px 75px #bebebe,
        -25px -25px 75px #ffffff;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pricing-card__price {
    font-size: 48px;
    font-weight: 800;
    color: #2d8034;
    margin-bottom: 10px;
}

.pricing-card__period {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 16px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.pricing-card__features li {
    padding: 10px 0;
    color: #6c757d;
    position: relative;
    padding-left: 25px;
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d8034;
    font-weight: bold;
}

/* Event Program */
.event-program {
    background: linear-gradient(135deg, rgba(240, 240, 243, 0.95), rgba(255, 255, 255, 0.9));
    padding: 80px 0;
}

.program-timeline {
    margin-top: 50px;
    position: relative;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #2d8034, #1864a8);
    transform: translateX(-50%);
}



.program-day__title{
    margin: 0;
}

.program-content {
    background: #f0f0f3;
    border-radius: 20px;
    padding: 30px;
    width: 45%;
    box-shadow: 
        15px 15px 40px #bebebe,
        -15px -15px 40px #ffffff;
}

.program-time {
    background: linear-gradient(135deg, #2d8034, #1864a8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.program-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.program-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Event Contact */
.event-contact {
    background: #f8f9fa;
    padding: 80px 0;
}

.event-contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    background: #f0f0f3;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 
        15px 15px 40px #bebebe,
        -15px -15px 40px #ffffff;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        20px 20px 50px #bebebe,
        -20px -20px 50px #ffffff;
}

.contact-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2d8034, #1864a8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.contact-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-card__position {
    color: #6c757d;
    margin-bottom: 20px;
    font-style: italic;
}

.contact-card__info {
    text-align: left;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #6c757d;
}

.contact-info-item i {
    color: #2d8034;
    width: 20px;
}

.contact-info-item a {
    color: #2d8034;
    text-decoration: none;
}

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

/* Responsive Design for Single Event Page */
@media (max-width: 1200px) {
    .event-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .event-hero__sidebar {
        position: static;
    }
    
    .program-timeline::before {
        left: 30px;
    }
    
    .program-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .program-item::before {
        left: 30px;
    }
    
    .program-content {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .event-hero__title {
        font-size: 2.5rem;
    }
    
    .event-hero__main {
        padding: 40px 30px;
    }
    
    .event-hero__sidebar {
        padding: 30px;
    }
    
    .event-stats__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .event-audience__grid,
    .event-pricing__grid,
    .event-contact__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .event-hero {
        padding: 100px 0 60px;
        margin-top: 80px;
    }
    
    .event-hero__title {
        font-size: 2rem;
    }
    
    .event-hero__meta {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .event-hero__actions {
        flex-direction: column;
    }
    
    .event-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .event-content-section {
        padding: 60px 0;
    }
    
    .event-section__title {
        font-size: 2rem;
    }
    
    .program-timeline::before {
        display: none;
    }
    
    .program-item {
        padding-left: 0;
    }
    
    .program-item::before {
        display: none;
    }
    
    .program-content {
        width: 100%;
    }
    
    .contact-card__info {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .event-hero__main,
    .event-hero__sidebar {
        padding: 30px 20px;
    }
    
    .event-stat-card,
    .audience-card,
    .pricing-card,
    .contact-card {
        padding: 30px 20px;
    }
    
    .event-content__list {
        padding: 30px 20px;
    }
    
    .program-content {
        padding: 20px;
    }
}

/* ========================================
   SINGLE EVENT PAGE STYLES
   ======================================== */

/* Body and Wrapper for Single Event */
body.gray {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper {
    position: relative;
    min-height: 100vh;
}

/* Promo Image Background - Hidden for Hero-only background */
.promo-image {
    display: none;
}

/* Header Styles for Single Event */
.header.header_business {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.center-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.header-logo img {
    height: 60px;
    width: auto;
}

.header-menu {
    flex: 1;
    margin: 0 40px;
}

.header-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.header-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.header-menu a:hover {
    color: #0a934c;
}

.header-contacts__callback {
    background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 147, 76, 0.3);
}

.header-contacts__callback:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 147, 76, 0.4);
    color: white;
    text-decoration: none;
}

/* Mobile Menu Toggle */
.header-menu__switcher {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.header-menu__switcher span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Promo Section for Single Event */
.promo.promo_business {
    background: linear-gradient(145deg, rgba(10, 147, 76, 0.8), rgba(24, 100, 168, 0.8));
    color: white;
    padding: 200px 0 80px;
    position: relative;
    z-index: 10;
    margin-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 70vh;
}

/* Enhanced background image overlay for better readability */
.promo.promo_business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(10, 147, 76, 0.7), rgba(24, 100, 168, 0.7));
    z-index: 1;
}

.promo.promo_business .container {
    position: relative;
    z-index: 2;
}

.promo.promo_inner {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-content {
    text-align: left;
    margin: 0;
    padding-left: 0;
    position: relative;
    z-index: 3;
    max-width: 900px;
    width: 100%;
}

.promo__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
    max-width: 800px;
    min-width: 300px;
}

.promo__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.promo-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.promo__btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.promo__btn:hover {
    background: white;
    color: #0a934c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.promo-mobile-image {
    display: none;
}

/* Event Status Badges */
.event-status-badge {
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-completed {

    color: white;
}

.event-countdown {
    margin-bottom: 20px;
}

.countdown-badge {
    display: inline-block;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
}

/* Improved text shadow for better readability */
.promo__title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promo__subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services/Benefits Section */
.services.benefits2 {
    background: white;
    padding: 80px 0;
}

.services__title.main__title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.main__title span {
    color: #0a934c;
}

.benefits2-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefits2-item {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefits2-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefits2-item__icon {
    margin-bottom: 20px;
}

.benefits2-item__icon img {
    width: 60px;
    height: 60px;
}

.benefits2-item__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefits2-item__title span {
    color: #0a934c;
    font-size: 2rem;
}

.benefits2-item__text {
    color: #6c757d;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: #f8f9fa;
    padding: 80px 0;
}

.features__title.main__title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.features-list {
    max-width: 1000px;
    margin: 0 auto;
}

.features-item {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.features-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.features-item_1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.features-item-column .img-container {
    border-radius: 15px;
    overflow: hidden;
}

.features-item-column img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.features-item__text {
    color: #2c3e50;
    line-height: 1.7;
}

.features-item__text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.features-item_2 {
    background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
    color: white;
}

.features-item__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.features-item_2 .features-item__text {
    color: rgba(255, 255, 255, 0.9);
}

.features-item_2 ul {
    list-style: none;
    padding: 0;
}

.features-item_2 li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.features-item_2 li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tasks Section */
.tasks.white {
    background: white;
    padding: 80px 0;
}

.main__title_tasks {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.tasks-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tasks-item {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tasks-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.tasks-item__image {
    margin-bottom: 25px;
}

.tasks-item__image img {
    width: 80px;
    height: 80px;
}

.tasks-item__image span {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
    color: white;
    border-radius: 50%;
    line-height: 80px;
    font-size: 2rem;
    font-weight: 700;
}

.tasks-item__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.tasks-item__title .green {
    color: #0a934c;
}

.tasks-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Services with Gradient */
.services.grad {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.services-item {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.services-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
}

.services-item__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-item__text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a934c;
    margin-bottom: 30px;
}

.btn-callback {
    background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-callback:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 147, 76, 0.3);
    color: white;
    text-decoration: none;
}

/* Program Section */
.tasks.prog {
    background: #f8f9fa;
}

.tasks.prog .tasks-item {
    background: white;
}

.tasks.prog .tasks-item__image span {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

/* Order/Contact Section */
.order {
    background: linear-gradient(135deg, #c7d0d9, #a6a6a6);
   
    color: white;
    padding: 80px 0;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.order-contacts__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a934c;
}

.order-contacts__phone {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.order-contacts__phone:hover {
    color: #0a934c;
    text-decoration: none;
}

.order-contacts-block__mail {
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.order-contacts-block__mail:hover {
    color: #0a934c;
    text-decoration: none;
}

.order-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.order-form__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.order-form__field,
.order-form__area {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.order-form__field:focus,
.order-form__area:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(10, 147, 76, 0.3);
}

.order-form__area {
    min-height: 120px;
    resize: vertical;
}

.order-form__btn {
    width: 100%;
    background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-form__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 147, 76, 0.3);
}

/* Responsive Design for Single Event */
@media (max-width: 1024px) {
    .header-menu {
        margin: 0 20px;
    }
    
    .header-menu ul {
        gap: 20px;
    }
    
    .promo__title {
        font-size: 2.5rem;
    }
    
    .features-item_1 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-menu {
        display: none;
    }
    
    .header-menu__switcher {
        display: flex;
    }
    
    .header-body {
        justify-content: space-between;
    }
    
    .promo__title {
        font-size: 2rem;
    }
    
    .promo__subtitle {
        font-size: 1.1rem;
    }
    
    .benefits2-row,
    .tasks-row,
    .services-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-item {
        padding: 30px 25px;
    }
    
    .services-item {
        padding: 40px 30px;
    }
    
    .order-form {
        padding: 30px 25px;
    }
    
    .promo-mobile-image {
        display: block;
        margin-top: 30px;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .promo-mobile-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .center-wrapper {
        padding: 0 15px;
    }
    
    .promo {
        padding: 120px 0 60px;
        margin-top: 60px;
    }
    
    .promo__title {
        font-size: 1.8rem;
    }
    
    .promo-content {
        text-align: left;
        padding-left: 0;
    }
    
    .promo.promo_business .container {
        text-align: left;
    }
    
    .promo-buttons {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }
    
    .promo__btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .services,
    .features,
    .tasks {
        padding: 60px 0;
    }
    
    .features-item,
    .services-item,
    .tasks-item {
        padding: 25px 20px;
    }
    
    .order-form {
        padding: 25px 20px;
    }
    
    .header-logo img {
        height: 50px;
    }
    
    .header-contacts__callback {
        padding: 10px 20px;
        font-size: 12px;
    }
}

.single-events .features {
padding: 1px 0;
}

/* Event Program Styles */
.event-program {
    padding: 60px 0;
    background: #ffffff;
}

.event-program__title {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.program-day {
    margin-bottom: 0;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}


.program-day__header {
      background: linear-gradient(145deg, rgba(10, 147, 76, 1), rgba(24, 100, 168, 1));
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}

.program-day__content {
    padding: 0;
    background: #f8f8f8;
}

.program-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    transition: none;
    background: #f8f8f8;
}

.program-item:nth-child(even) {
    background: #f8f8f8;
}

.program-item:last-child {
    border-bottom: none;
}

.program-item:hover {
    background: #f8f8f8;
    transform: none;
}

.program-item__time {
    flex: 0 0 100px;
    font-size: 16px;
    font-weight: 600;
    color: #2E8B57;
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: left;
    margin-right: 20px;
    border: none;
    min-height: auto;
    min-width: 120px;
    display: block;
    align-items: normal;
    justify-content: normal;
}

.program-item__content {
    flex: 1;
    padding-right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.program-item__text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
    flex: 1;
    padding-right: 0;
}

.program-item__photo {
    flex: 0 0 60px;
}

.program-item__photo img,
.speaker-photo {
    width:110px;
    height:110px;
    border-radius: 50%;
    object-fit: cover;
 border: 4px solid transparent;
    background: linear-gradient(#ccc 0 0) padding-box, /*this is your grey background*/ linear-gradient(to right, #0a934c, #1864a8) border-box;
    transition: none;
}

.program-item__photo img:hover,
.speaker-photo:hover {
    transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .event-program {
        padding: 40px 0;
    }
    
    .event-program__title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .program-day {
        margin-bottom: 0;
        border-radius: 0;
    }
    
    .program-day__header {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .program-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        text-align: left;
    }
    
    .program-item:hover {
        transform: none;
    }
    
    .program-item__time {
        flex: none;
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 14px;
        padding: 0;
    }
    
    .program-item__content {
        padding-right: 0;
        margin-bottom: 10px;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .program-item__speaker {
        flex: none;
        align-self: center;
    }
    
    .program-item__photo {
        width: 50px;
        height: 50px;
    }
    
    .program-item__photo img,
    .speaker-photo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .event-program {
        padding: 30px 0;
    }
    
    .event-program__title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-left: 10px;
    }
    
    .program-day__header {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .program-item {
        padding: 12px;
    }
    
    .program-item__time {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .program-item__text {
        font-size: 0.9rem;
    }
    
    .program-item__photo {
        width: 50px;
        height: 50px;
    }
}
.events-section-title{
    text-align: center;
}
.events-section{
    margin-bottom: 50px;
}
.event-content{
    font-size: 14px;
}
