/* Базові скидання */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хедер */
.header {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 24px;
    color: #1e3a8a;
    font-weight: bold;
    text-decoration: none;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav ul li a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #3b82f6;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}

/* Адаптивність */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #ffffff;
        width: 200px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        z-index: 999999;
    }

    .nav.active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }
}

.cookie-notice {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9fafb;
    border: 2px solid #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    padding: 25px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    z-index: 9999;
    animation: fadeSlideUp 0.8s ease forwards;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 50px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.cookie-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.cookie-text a {
    color: #3b82f6;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.btn-accept,
.btn-decline {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept {
    background-color: #3b82f6;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2563eb;
}

.btn-decline {
    background-color: #e5e7eb;
    color: #374151;
}

.btn-decline:hover {
    background-color: #d1d5db;
}

/* Адаптивність */
@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
    }
}
.hero {
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    padding: 100px 0 80px;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.tagline {
    font-size: 20px;
    color: #2563eb;
    margin-bottom: 20px;
    font-weight: bold;
}

.description {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-secondary {
    border: 2px solid #3b82f6;
    padding: 10px 22px;
    border-radius: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3b82f6;
    color: white;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Адаптивність */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 18px;
    }

    .description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        max-width: 90%;
    }
}
.process {
    background: #f8fafc;
    padding: 100px 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 40px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.process-header p {
    font-size: 18px;
    color: #6b7280;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    background: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.step-number {
    font-size: 36px;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1f2937;
}

.step p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

/* Адаптивність */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
}
.about {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.2);
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: #3b82f6;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 44px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.about-description {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-text .btn-primary {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 40px;
    transition: background-color 0.3s ease;
}

.about-text .btn-primary:hover {
    background-color: #2563eb;
}

.about-counters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.counter {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    flex: 1 1 30%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

.counter-number {
    font-size: 38px;
    color: #3b82f6;
    font-weight: bold;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 15px;
    color: #6b7280;
}

/* Адаптивність */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-counters {
        flex-direction: column;
        gap: 20px;
    }

    .counter {
        width: 100%;
    }
}

/* Адаптивність */
@media (max-width: 480px) {
    .cookie-banner {
        width: 90%;
        bottom: 15px;
        right: 5%;
        padding: 20px;
    }
}
.site-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 50px 0 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo a {
    font-size: 22px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: bold;
}

.footer-logo p {
    margin-top: 10px;
    font-size: 14px;
    color: #9ca3af;
}

.footer-links h5,
.footer-contact h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #60a5fa;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3b82f6;
}

.footer-contact ul li {
    color: #9ca3af;
}

/* Нижня частина футера */
.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

/* Адаптивність */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-links ul,
    .footer-contact ul {
        text-align: center;
    }
}
.services {
    background: #f9fafb;
    padding: 100px 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 18px;
    color: #6b7280;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.service-card h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-price {
    font-size: 22px;
    color: #3b82f6;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2563eb;
}

/* Адаптивність */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}
.blog-archive {
    background: #f8fafc;
    padding: 100px 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.blog-header p {
    font-size: 18px;
    color: #6b7280;
}

.blog-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-post {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.2);
}

.blog-image-wrapper {
    position: relative;
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #3b82f6;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    text-decoration: none;
    color: #1f2937;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #3b82f6;
}

.blog-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* Адаптивність */
@media (max-width: 768px) {
    .blog-grid {
        flex-direction: column;
        align-items: center;
    }
}
.faq {
    background: #ffffff;
    padding: 100px 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 18px;
    color: #6b7280;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.2);
}

.faq-item h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

/* Адаптивність */
@media (max-width: 768px) {
    .faq-list {
        gap: 20px;
    }

    .faq-item {
        padding: 20px;
    }
}
.contact {
    background: #f0f9ff;
    padding: 100px 20px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 40px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #374151;
    line-height: 2;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #1e3a8a;
}

form input[type=\"text\"],
form input[type=\"email\"],
form textarea {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 2px solid #cbd5e1;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

form input[type=\"text\"]:focus,
form input[type=\"email\"]:focus,
form textarea:focus {
    border-color: #3b82f6;
    outline: none;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #4b5563;
}

.checkbox-wrapper a {
    color: #3b82f6;
    text-decoration: underline;
}

.btn-contact {
    background-color: #3b82f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-contact:hover {
    background-color: #2563eb;
}

.alert {
    margin-top: 20px;
    background: #d1fae5;
    color: #065f46;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
}

.hidden {
    display: none;
}

/* Адаптивність */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
}
.section {
    padding: 100px 20px;
    background: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.form-wrapper {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.form-box h2 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    text-align: center;
}

form input {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

form input:focus {
    border-color: #3b82f6;
    outline: none;
}

.btn-submit {
    background-color: #3b82f6;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2563eb;
}

.form-extra {
    margin-top: 20px;
    text-align: center;
}

.form-extra p {
    font-size: 14px;
    color: #4b5563;
}

.form-extra a {
    color: #3b82f6;
    text-decoration: underline;
}

/* Popup */

.popup-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.popup-content h3 {
    font-size: 24px;
    color: #22c55e;
    margin-bottom: 20px;
}

.popup-content p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 20px;
}

.popup-close {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe, #c7d2fe);
    padding: 40px 20px;
}

.auth-container {
    display: flex;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.auth-form-side, .auth-image-side {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-side {
    background: #ffffff;
}

.auth-form-side h2 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #3b82f6;
    outline: none;
}

.btn-auth {
    background: #3b82f6;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-auth:hover {
    background: #2563eb;
}

.auth-link {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.auth-link a {
    color: #3b82f6;
    text-decoration: underline;
}

.auth-image-side {
    background: url('https://images.unsplash.com/photo-1605902711622-cfb43c4437b2?crop=entropy&cs=tinysrgb&fit=crop&h=800&w=600') center/cover no-repeat;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    padding: 40px 20px;
}

.signup-image {
    background: url('https://images.unsplash.com/photo-1605902711622-cfb43c4437b2?crop=entropy&cs=tinysrgb&fit=crop&h=800&w=600') center/cover no-repeat;
}

.auth-image-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.auth-image-text p {
    font-size: 16px;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-content h3 {
    font-size: 24px;
    color: #22c55e;
    margin-bottom: 20px;
}

.popup-content p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 20px;
}

.popup-close {
    background: #3b82f6;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* Адаптивність */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-image-side {
        display: none;
    }
}
.about-hero {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    padding: 120px 20px;
    text-align: center;
    color: #ffffff;
}

.about-hero-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero-container p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-story, .about-mission, .business-model, .about-values {
    padding: 100px 20px;
    background: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-text, .about-mission-block, .business-step, .about-values-container {
    background: #ffffff;
    padding: 40px 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.about-story-text h2, .about-mission-block h2, .business-model-container h2, .about-values-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.about-story-text p, .about-mission-block p, .business-step p, .about-values-container ul {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
}

.business-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2563eb;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4b5563;
}

/* Адаптивність */
@media (max-width: 768px) {
    .about-hero-container h1 {
        font-size: 36px;
    }
    .business-model-grid {
        grid-template-columns: 1fr;
    }
}
.policy-hero {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.policy-hero-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.policy-hero-container p {
    font-size: 18px;
    margin-bottom: 30px;
}

.policy-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.policy-nav a {
    background: #ffffff;
    color: #3b82f6;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.policy-nav a:hover {
    background: #e0f2fe;
}

.policy-section {
    background: #f9fafb;
    padding: 80px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.policy-section h2 {
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 24px;
    color: #2563eb;
    margin-top: 30px;
    margin-bottom: 10px;
}

.policy-section p, .policy-section ul {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
}

.policy-section ul {
    padding-left: 20px;
    margin-top: 10px;
}

.policy-section ul li {
    margin-bottom: 10px;
}

/* Адаптивність */
@media (max-width: 768px) {
    .policy-nav {
        flex-direction: column;
        align-items: center;
    }
}
.blog-post-hero {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.blog-post-hero-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.blog-post-meta {
    font-size: 16px;
    color: #dbeafe;
}

.blog-post-content {
    padding: 80px 20px;
    background: #f9fafb;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-text-block {
    margin-bottom: 50px;
}

.blog-text-block h2 {
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.blog-text-block p, .blog-text-block ul {
    font-size: 16px;
    color: #374151;
    line-height: 1.8;
}

.blog-text-block ul {
    padding-left: 20px;
    list-style-type: disc;
}

.blog-text-block ul li {
    margin-bottom: 10px;
}

.blog-cta {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.blog-cta h3 {
    font-size: 26px;
    color: #1e40af;
    margin-bottom: 20px;
}

.blog-cta p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
}

.btn-blog-cta {
    background: #3b82f6;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-blog-cta:hover {
    background: #2563eb;
}

/* Адаптивність */
@media (max-width: 768px) {
    .blog-post-hero-container h1 {
        font-size: 32px;
    }

    .blog-text-block h2 {
        font-size: 24px;
    }
}
