:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --bg-primary: #ffffff;
    --bg-secondary: #f3f4f6;
    --bg-white: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
}

.main-header-wrapper {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.primary-navigation-bar {
    padding: 1rem 0;
}

.nav-container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-menu-trigger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.nav-links-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link-item, .nav-link-active {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link-item:hover {
    color: var(--primary-color);
}

.nav-link-active {
    color: var(--primary-color);
}

.font-adjust-btn, .language-toggle-btn {
    background-color: var(--bg-secondary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.font-adjust-btn:hover, .language-toggle-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.main-content-area {
    min-height: calc(100vh - 400px);
}

.hero-banner-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text-block {
    animation: fadeInLeft 1s ease-out;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-highlight {
    color: var(--accent-color);
}

.hero-subtitle-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-outline {
    background-color: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border: 2px solid white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.hero-image-block {
    animation: fadeInRight 1s ease-out;
}

.hero-main-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.features-overview-section, .recent-posts-section {
    padding: 4rem 0;
}

.section-container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-heading-center {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subheading-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.feature-card-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-svg-icon {
    width: 30px;
    height: 30px;
    color: white;
}

.feature-title-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-description-text {
    color: var(--text-secondary);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.post-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post-card:hover .post-thumbnail-img {
    transform: scale(1.1);
}

.post-content-block {
    padding: 1.5rem;
}

.post-category-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.post-title-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.post-excerpt-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.post-read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.post-read-more-link:hover {
    color: var(--primary-dark);
}

.section-cta-center {
    text-align: center;
    margin-top: 2rem;
}

.newsletter-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
}

.newsletter-content-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-heading-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-description-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form-inline {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-email-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.site-footer-section {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer-column-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description-text {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-registration-info {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-link-item {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link-item:hover {
    color: white;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.contact-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom-bar {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright-text {
    color: #9ca3af;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-banner-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-banner-description {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions-section {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn-accept, .cookie-btn-decline, .cookie-btn-customize, .cookie-btn-save {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.cookie-btn-decline {
    background-color: #ef4444;
    color: white;
}

.cookie-btn-decline:hover {
    background-color: #dc2626;
}

.cookie-btn-customize {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

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

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content-box {
    background-color: white;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-body-section {
    padding: 1.5rem;
}

.cookie-option-item {
    margin-bottom: 1.5rem;
}

.cookie-option-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option-desc {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-left: 2rem;
}

.modal-footer-section {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cookie-btn-save {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
}

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

.success-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10002;
    align-items: center;
    justify-content: center;
}

.success-modal-overlay.show {
    display: flex;
}

.success-modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-checkmark-svg {
    width: 50px;
    height: 50px;
    color: white;
}

.success-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.success-modal-message {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.success-modal-close-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.success-modal-close-btn:hover {
    background-color: var(--primary-dark);
}

.about-team-section {
    padding: 4rem 0;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.team-member-card > h3, .team-member-card > p {
    padding: 0 1.5rem;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-bio {
    color: var(--text-secondary);
    padding-bottom: 1.5rem;
}

.contact-form-section {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group-wrapper {
    margin-bottom: 1.5rem;
}

.form-label-text {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-input-field, .form-textarea-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input-field:focus, .form-textarea-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea-field {
    min-height: 150px;
    resize: vertical;
}

.form-submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit-button:hover {
    background-color: var(--primary-dark);
}

.post-article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.post-header-section {
    margin-bottom: 2rem;
}

.post-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta-info {
    color: var(--text-secondary);
    display: flex;
    gap: 0.5rem;
}

.post-featured-image {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.post-body-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.post-body-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-body-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-body-content p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.post-body-content ul {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.post-body-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

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

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

@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-main-title {
        font-size: 2.25rem;
    }
    
    .mobile-menu-trigger {
        display: flex;
    }
    
    .nav-links-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        display: none;
    }
    
    .nav-links-list.active {
        display: flex;
    }
    
    .cookie-banner-content {
        flex-direction: column;
    }
    
    .cookie-actions-section {
        width: 100%;
        flex-direction: column;
    }
    
    .section-heading-center {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .post-main-title {
        font-size: 2rem;
    }
}

@media (min-width: 968px) {
    body.font-large {
        font-size: 18px;
    }
    
    body.font-large .hero-main-title {
        font-size: 3.5rem;
    }
    
    body.font-large .section-heading-center {
        font-size: 3rem;
    }
}