/* Загальні стилі */
:root {
    --primary-color: #ff5e3a;
    --primary-dark: #e64a2e;
    --secondary-color: #3a7bd5;
    --text-color: #333;
    --text-light: #666;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --border-color: #ddd;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

/* Кнопки */
.btn-primary, 
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

/* 3D Кнопка */
.button3d-container {
    perspective: 800px;
    display: inline-block;
    margin: 20px 0;
}

.button3d {
    display: inline-block;
    position: relative;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 0 1px var(--primary-dark) inset,
                0 5px 0 0 var(--primary-dark),
                0 10px 15px rgba(0, 0, 0, 0.3);
}

.button3d:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-color: var(--primary-dark);
    transform: translateZ(-25px);
    z-index: -1;
    border-radius: var(--border-radius);
}

.button3d:hover {
    transform: translateZ(-15px) rotateX(-10deg);
    box-shadow: 0 0 0 1px var(--primary-dark) inset,
                0 10px 0 0 var(--primary-dark),
                0 15px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.button3d:active {
    transform: translateZ(-5px) rotateX(-20deg);
    box-shadow: 0 0 0 1px var(--primary-dark) inset,
                0 2px 0 0 var(--primary-dark),
                0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Header/Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0;
}

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

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Stats Section */
.stats {
    background-color: var(--light-color);
    text-align: center;
}

.stats h2 {
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.stat-item {
    padding: 20px;
    margin: 10px;
    flex: 1 1 200px;
    max-width: 250px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-item p {
    color: var(--text-light);
}

/* Services Section */
.services {
    background-color: white;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Recent Blogs Section */
.recent-blogs {
    background-color: var(--light-color);
    text-align: center;
}

.recent-blogs h2 {
    margin-bottom: 40px;
}

.blog-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    flex: 1 1 300px;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--text-light);
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

.center-btn {
    text-align: center;
    margin-top: 30px;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    text-align: center;
    overflow: hidden;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 500px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 15px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 30px;
    color: var(--primary-color);
    position: absolute;
}

.testimonial-content p::before {
    left: -10px;
    top: -10px;
}

.testimonial-content p::after {
    right: -10px;
    bottom: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 0;
    text-align: left;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1 1 250px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons i {
    color: white;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.footer-legal {
    margin-bottom: 15px;
}

.footer-legal a {
    color: #ccc;
    margin: 0 10px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 15px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-cookie-accept,
.btn-cookie-settings,
.btn-cookie-decline {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

.btn-cookie-settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-cookie-decline {
    background-color: transparent;
    color: #ccc;
}

.btn-cookie-decline:hover {
    color: white;
}

.cookie-more {
    color: #ccc;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-more:hover {
    color: white;
}

/* Blog Page */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/42.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
}

.blog-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    flex: 0 0 300px;
}

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

.post-content {
    padding: 30px;
    flex: 1;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
}

.post-date, .post-category, .post-author {
    display: flex;
    align-items: center;
}

.post-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
}

/* Subscribe Section */
.subscribe {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe h2 {
    margin-bottom: 15px;
}

.subscribe p {
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.subscribe-form button {
    padding: 15px 20px;
    background-color: var(--dark-color);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
}

.subscribe-form button:hover {
    background-color: #1e2328;
}

/* Single Blog Post */
.blog-post-single {
    padding: 80px 0;
    background-color: var(--light-color);
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.post-featured-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.post-content-full {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.post-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 500;
}

.post-content-full h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
}

.post-content-full h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.post-content-full p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content-full ul, .post-content-full ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content-full ul li, .post-content-full ol li {
    margin-bottom: 10px;
    position: relative;
}

.post-content-full ul li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.post-content-full ol {
    counter-reset: item;
}

.post-content-full ol li {
    counter-increment: item;
}

.post-content-full ol li:before {
    content: counter(item) ". ";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
}

.post-image-inline {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image-inline img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.image-caption {
    padding: 10px 15px;
    background-color: var(--light-color);
    font-style: italic;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.post-share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.post-share h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.social-share {
    display: flex;
    gap: 10px;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-share a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-share a:hover i {
    color: white;
}

.social-share i {
    color: var(--text-color);
    font-size: 18px;
}

.post-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--light-color);
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
}

.post-author-bio {
    display: flex;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.post-author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.author-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-light);
}

.author-info h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.author-info p {
    line-height: 1.6;
}

.related-posts {
    margin-bottom: 40px;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
}

.related-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.related-post {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 15px;
    font-size: 18px;
    transition: var(--transition);
}

.related-post:hover h4 {
    color: var(--primary-color);
}

.post-comments {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.post-comments h3 {
    margin-bottom: 30px;
    font-size: 24px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment-avatar {
    flex: 0 0 60px;
    margin-right: 20px;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-meta h4 {
    margin-bottom: 0;
    margin-right: 15px;
}

.comment-date {
    color: var(--text-light);
    font-size: 14px;
}

.btn-reply {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
    font-size: 14px;
}

.btn-reply:hover {
    text-decoration: underline;
}

.comment-form {
    margin-top: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

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

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

/* About Page */
.about-story {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

.mission-values {
    background-color: var(--light-color);
    padding: 80px 0;
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-card {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
}

.team-section {
    background-color: white;
    padding: 80px 0;
    text-align: center;
}

.team-section h2, .team-section .section-intro {
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.team-member p:nth-child(3) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.member-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--primary-color);
}

.member-social a:hover i {
    color: white;
}

.member-social i {
    color: var(--primary-color);
}

.certifications {
    background-color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.certifications h2 {
    margin-bottom: 40px;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.certification {
    flex: 1 1 200px;
    max-width: 250px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.certification:hover {
    transform: translateY(-5px);
}

.certification img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.certification h3 {
    margin-bottom: 10px;
}

.certification p {
    color: var(--text-light);
}

/* Contact Page */
.contact-section {
    background-color: white;
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item div {
    flex: 1;
}

.info-item h3 {
    margin-bottom: 10px;
}

.info-item p, .info-item a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.social-contact h3 {
    margin-bottom: 15px;
}

.contact-form-container {
    flex: 1 1 500px;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 10px;
}

.contact-form-container > p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.map-section {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 30px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #eee;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 18px;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 18px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.thank-you-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.thank-you-popup.show {
    display: flex;
}

.popup-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.popup-content i {
    font-size: 60px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 15px;
}

.popup-content p {
    margin-bottom: 30px;
}

/* Адаптивність */

/* Для планшетів */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .service-card {
        max-width: 300px;
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }
    
    .burger {
        display: block;
    }
    
    .post-image {
        flex: 0 0 200px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
}

/* Для мобільних телефонів */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .post-image {
        height: 200px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact, .footer-social {
        margin-bottom: 30px;
    }
    
    .footer-links h3:after, .footer-contact h3:after, .footer-social h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .post-author-bio img {
        margin: 0 auto 20px;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .comment-avatar img {
        margin: 0 auto;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .subscribe-form button {
        border-radius: 5px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Анімації для мобільного меню */
.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Анімація для бургера */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
