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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

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

.container-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-switcher button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.lang-switcher button:hover {
    background: var(--secondary-color);
}

.main-header {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    border-radius: 50%;
    border: 3px solid #fff;
}

.logo-section h1 {
    font-size: 24px;
    font-weight: 600;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.primary-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 3px;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--secondary-color);
    background: rgba(255,255,255,0.1);
}

.hero-banner {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    opacity: 0.95;
}

.inspiration-block {
    background: var(--light-bg);
    padding: 40px 0;
    border-bottom: 3px solid var(--accent-color);
}

.inspiration-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.inspiration-content i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.inspiration-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.inspiration-content p {
    font-size: 18px;
    font-style: italic;
    color: #555;
}

.main-content {
    padding: 60px 0;
}

.welcome-section,
.page-intro {
    margin-bottom: 50px;
}

.welcome-section h2,
.page-intro h2,
.recent-posts h2,
.info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
}

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

.feature-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-bottom: 10px;
}

.post-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.post-content h3 a:hover {
    color: var(--accent-color);
}

.post-meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

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

.info-section {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.stat-item h4 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.site-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-col i {
    margin-right: 8px;
    color: var(--accent-color);
}

.company-reg {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

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

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    margin-bottom: 8px;
}

.cookie-text a {
    color: var(--accent-color);
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-decline {
    background: #555;
    color: #fff;
}

.btn-decline:hover {
    background: #777;
}

.btn-customize {
    background: var(--accent-color);
    color: #fff;
}

.btn-customize:hover {
    background: #2980b9;
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 30px;
}

.post-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.post-content h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.post-content ul,
.post-content ol {
    margin-bottom: 15px;
    margin-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
}

.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.related-posts h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-card {
    display: block;
    text-decoration: none;
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.related-card h3 {
    padding: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.policy-section h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.contact-form-section,
.contact-info-section {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
}

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

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

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--primary-color);
}

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

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

.submit-btn {
    background: var(--accent-color);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2980b9;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block {
    display: flex;
    gap: 15px;
}

.info-block i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 5px;
}

.faq-suggestion {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
}

.faq-link-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.faq-link-btn:hover {
    background: #2980b9;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category i {
    color: var(--accent-color);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

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

.team-member {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

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

.team-member h3 {
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 10px;
}

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

.mission-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.mission-box i {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.services-grid,
.trust-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.service-item,
.trust-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.service-item i,
.trust-item i {
    font-size: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.detail-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.detail-box i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .primary-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}