
        :root {
            --primary-color: #2E5C8A;
            --secondary-color: #F4A261;
            --light-bg: #F8F9FA;
            --dark-text: #495057;
            --white: #FFFFFF;
            --gold: #FFD700;
            --silver: #C0C0C0;
            --platinum: #E5E4E2;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
        }

        .navbar-brand img {
            width: 300px; /* Новый размер ширины для вертикального логотипа */
            height: 170px; /* Новый размер высоты для вертикального логотипа */
            object-fit: contain; /* Чтобы логотип не искажался, если его пропорции не идеально совпадают */
        }

        .navbar {
            background-color: var(--white) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0; /* Увеличил вертикальные отступы, чтобы логотип поместился */
            min-height: auto; /* Минимальная высота navbar для размещения высокого логотипа */
            display: flex;
            align-items: center; /* Выравнивание элементов по центру вертикально */
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark-text) !important;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 10px;
            padding: 15px 0;
        }

        .dropdown-item {
            padding: 10px 25px;
            transition: background-color 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: var(--light-bg);
            color: var(--primary-color);
        }

        /* Увеличил отступ для баннера, чтобы он не перекрывался высокой навигацией */
        .tax-deductible-banner {
            background: linear-gradient(45deg, #f0d876, #ce9d2a);
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .tax-deductible-banner .badge {
            background-color: white;
            color: #ce9d2a;
            padding: 10px 20px;
            font-size: 1.3rem;
            border-radius: 30px;
            margin-left: 15px;
        }

        .hero-section {
            background: linear-gradient(rgba(46, 92, 138, 0.8), rgba(46, 92, 138, 0.8)), url('images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            min-height: 600px;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-section .lead {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            background-color: #e6935a;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(244, 162, 97, 0.4);
            color: white;
        }

        .btn-secondary-custom {
            background-color: white;
            color: var(--primary-color);
            border: 2px solid white;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            color: var(--dark-text);
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-section {
            background-color: var(--light-bg);
        }

        .about-content {
            display: flex;
            align-items: center;
            min-height: 400px;
        }

        .about-image {
            background: url('images/about-image.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid var(--secondary-color);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .service-card h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .get-involved-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .involvement-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid var(--primary-color);
        }

        .involvement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .involvement-icon {
            width: 80px;
            height: 80px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .involvement-card h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .membership-tiers {
            margin-top: 30px;
            padding: 20px;
            background-color: var(--light-bg);
            border-radius: 10px;
        }

        .tier-badge {
            display: inline-block;
            padding: 5px 15px;
            margin: 5px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .tier-silver {
            background-color: var(--silver);
            color: #333;
        }

        .tier-gold {
            background-color: var(--gold);
            color: #333;
        }

        .tier-platinum {
            background-color: var(--platinum);
            color: #333;
        }

        .testimonials-section {
            background-color: var(--light-bg);
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 4rem;
            color: var(--secondary-color);
            position: absolute;
            top: -10px;
            left: 20px;
            font-family: serif;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 15px;
            display: flex;
            align-items: center;
        }

        /* Добавил стили для изображений в отзывах */
        .testimonial-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .contact-section {
            background: linear-gradient(135deg, var(--primary-color), #3a6fa5);
            color: white;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .form-control {
            border: none;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            background: rgba(255,255,255,0.9);
        }

        .contact-info {
            padding: 40px 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.2rem;
        }

        .footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 50px 0 20px;
        }

        .footer h6 {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--secondary-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        .copyright {
            border-top: 1px solid #444;
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-content {
                min-height: auto;
            }
            
            .about-image {
                height: 300px;
                margin-bottom: 30px;
            }

            .navbar-brand img {
                width:  auto; /* Уменьшаем логотип для мобильных устройств */
                height:100px; /* Сохраняем пропорции */
            }

            .navbar {
                min-height: auto; /* Автоматическая высота для мобильных */
                padding: 10px 0;
                flex-direction: column; /* Стек элементов вертикально на мобильных */
            }

            .navbar-collapse {
                margin-top: 20px; /* Отступ для меню под логотипом */
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .tax-deductible-banner {
                font-size: 1rem;
               
            }

            .tax-deductible-banner .badge {
                display: block;
                margin: 10px auto 0;
            }
        }