:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F77F00;
    --text-dark: #1A1A2E;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --warning-color: #F59E0B;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

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

.logo-img {
    border-radius: 8px;
}

.site-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
}

.primary-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 17px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #003366 100%);
    color: var(--bg-white);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    padding: 14px 32px;
    border: 2px solid var(--bg-white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.features-section,
.process-section,
.blog-preview,
.facts-section,
.cta-section {
    padding: 80px 0;
}

.section-heading {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 52px;
    color: var(--text-dark);
}

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

.feature-card {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-number {
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.blog-grid,
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
    margin-bottom: 48px;
}

.blog-card,
.post-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover,
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.blog-image,
.post-img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content,
.post-body {
    padding: 28px;
}

.post-meta,
.post-meta-info {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

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

.post-category {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
}

.blog-title,
.post-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-excerpt,
.post-summary {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.read-more,
.post-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more:hover,
.post-link:hover {
    color: var(--accent-color);
}

.text-center {
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

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

.cta-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cta-text {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta {
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.fact-item {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.fact-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
}

.fact-item p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 24px;
}

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

.footer-heading {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-text {
    color: var(--bg-light);
    line-height: 1.7;
    font-size: 15px;
}

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

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

.footer-links a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

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

.footer-contacts li {
    margin-bottom: 14px;
    color: var(--bg-light);
    line-height: 1.6;
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: var(--bg-light);
    font-size: 14px;
}

.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #002E5C 100%);
    color: var(--bg-white);
    padding: 64px 0;
    text-align: center;
}

.page-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.post-image-wrapper {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-heading,
.form-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-value {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-value a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
}

.map-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.modal-heading {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.modal-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.modal-close-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-close-btn:hover {
    background-color: #E55A2B;
}

.about-intro {
    padding: 60px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-paragraph {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 17px;
}

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 52px;
    font-size: 18px;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--primary-color);
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.member-position {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 14px;
}

.member-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background-color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.value-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.post-single {
    padding: 60px 0;
}

.post-title-main {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--text-dark);
    line-height: 1.3;
}

.post-featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 40px;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
    font-weight: 500;
}

.post-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.post-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

.post-content strong {
    color: var(--text-dark);
    font-weight: 700;
}

.post-footer {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.back-to-blog {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--accent-color);
}

.related-posts {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.related-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.related-card img {
    width: 100%;
    height: auto;
    display: block;
}

.related-card h3 {
    padding: 20px;
    font-size: 19px;
    color: var(--text-dark);
}

.related-link {
    display: block;
    padding: 0 20px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.related-link:hover {
    color: var(--accent-color);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1500;
}

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

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

.cookie-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-all {
    background-color: var(--success-color);
    color: var(--bg-white);
}

.accept-all:hover {
    background-color: #0D9668;
}

.customize {
    background-color: var(--warning-color);
    color: var(--bg-white);
}

.customize:hover {
    background-color: #D97706;
}

.decline {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.decline:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .hero-grid,
    .about-content-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-heading,
    .page-title {
        font-size: 34px;
    }
    
    .section-heading {
        font-size: 30px;
    }
    
    .primary-nav {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .post-title-main {
        font-size: 32px;
    }
    
    .post-content {
        font-size: 17px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .team-grid,
    .features-grid,
    .blog-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
}
