:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ac4;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
}

* {
    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-dark);
    background-color: var(--bg-white);
}

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

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

.navigation-bar {
    padding: 15px 0;
}

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

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

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,84,144,0.9), rgba(44,122,196,0.8));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
}

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

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.daily-inspiration {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.daily-inspiration h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.inspiration-content {
    max-width: 1000px;
    margin: 0 auto;
}

.inspiration-quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 40px;
}

.inspiration-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

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

.inspiration-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.inspiration-card i {
    font-size: 36px;
    margin-bottom: 15px;
}

.inspiration-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.white-paper-preview {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.wp-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.wp-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.wp-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.wp-features {
    list-style: none;
    margin: 30px 0;
}

.wp-features li {
    padding: 12px 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wp-features i {
    color: var(--success-color);
    font-size: 20px;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.wp-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.blog-preview h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.read-more:hover {
    gap: 12px;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p,
.footer-section ul {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.7;
}

.reg-number {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 10000;
    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: 30px;
}

.cookie-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cookie-text p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

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

.decline-btn {
    background-color: var(--text-light);
    color: white;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.white-paper-content {
    padding: 60px 0;
}

.wp-introduction {
    margin-bottom: 60px;
}

.wp-introduction img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
}

.wp-intro-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.wp-section {
    margin-bottom: 60px;
}

.wp-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.wp-content-block h3 {
    font-size: 26px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.wp-content-block h4 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

.wp-content-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.comparison-column {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.comparison-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.comparison-column li:last-child {
    border-bottom: none;
}

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

.methodology-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

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

.methodology-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.wp-inline-image {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

.wp-list {
    margin: 20px 0 20px 30px;
}

.wp-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.wp-list strong {
    color: var(--text-dark);
}

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

.risk-zone {
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid;
}

.risk-zone.critical {
    background: #fee;
    border-color: var(--danger-color);
}

.risk-zone.elevated {
    background: #fff3cd;
    border-color: var(--warning-color);
}

.risk-zone.moderate {
    background: #d1ecf1;
    border-color: #17a2b8;
}

.risk-zone.opportunity {
    background: #d4edda;
    border-color: var(--success-color);
}

.risk-zone h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

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

.principle-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

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

.principle-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.wp-numbered-list {
    margin: 20px 0 20px 30px;
    counter-reset: item;
    list-style: none;
}

.wp-numbered-list li {
    counter-increment: item;
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.wp-numbered-list li::before {
    content: counter(item) ". ";
    font-weight: 700;
    color: var(--primary-color);
}

.wp-cta-section {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
    margin-top: 60px;
    text-align: center;
}

.wp-cta-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.wp-cta-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
}

.cta-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-box p {
    margin-bottom: 25px;
}

.cta-box .cta-button,
.cta-box .cta-secondary {
    margin: 10px;
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 5px solid var(--warning-color);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: left;
}

.disclaimer-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
}

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

.blog-grid {
    display: grid;
    gap: 40px;
}

.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.post-image {
    position: relative;
}

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

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.post-content {
    padding: 35px;
}

.post-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.post-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.blog-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.about-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

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

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.team-card h3 {
    font-size: 22px;
    padding: 20px 25px 10px;
    color: var(--text-dark);
}

.team-role {
    padding: 0 25px 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.team-bio {
    padding: 0 25px 25px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.value-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.about-cta {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-details {
    margin-bottom: 30px;
}

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

.contact-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

.contact-image {
    margin-top: 30px;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
}

.contact-form-container h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-content p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-light);
}

.modal-btn {
    padding: 12px 35px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.post-article {
    padding: 40px 0;
}

.post-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.post-header h1 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.post-meta-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: var(--text-light);
    font-size: 15px;
}

.post-featured-image {
    max-width: 1200px;
    margin: 0 auto 50px;
}

.post-featured-image img {
    width: 100%;
    border-radius: 12px;
}

.post-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
}

.post-main-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 500;
}

.post-main-content h2 {
    font-size: 30px;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.post-main-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

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

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.related-posts {
    list-style: none;
}

.related-posts li {
    margin-bottom: 15px;
}

.related-posts a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.related-posts a:hover {
    opacity: 0.7;
}

.sidebar-widget p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.sidebar-cta {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.sidebar-cta:hover {
    background: var(--secondary-color);
}

.post-navigation {
    padding: 40px 0;
    border-top: 2px solid var(--border-color);
}

.post-navigation .container {
    display: flex;
    justify-content: space-between;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .wp-preview-content {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .blog-post-card {
        grid-template-columns: 1fr;
    }

    .post-image img {
        height: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .post-content-wrapper {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}