/* Variables */
:root {
    --primary-color: #0075c4;
    --primary-dark: #005691;
    --primary-light: #4da6e0;
    --secondary-color: #ff9e1f;
    --secondary-dark: #e08200;
    --secondary-light: #ffb85c;
    --dark-color: #1a1a2e;
    --light-color: #f7f7f7;
    --text-color: #333333;
    --text-light: #777777;
    --text-dark: #222222;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-size: 1rem;
}

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

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

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

.secondary-btn:hover {
    background-color: var(--secondary-dark);
    color: #fff;
}

.outline-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Featured Posts Section */
.featured-posts {
    padding: 80px 0;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.post-card {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.post-tag.new {
    background-color: var(--secondary-color);
}

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.read-more i {
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Mistakes Section */
.mistakes-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.mistakes-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.mistakes-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.mistake-item {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
}

.mistake-icon {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.mistake-icon i {
    font-size: 1.25rem;
}

.mistake-text h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.mistake-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .btn {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 70px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-light);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 20px;
    text-align: center;
}

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

.cookie-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.cookie-btn.secondary {
    background-color: #f1f1f1;
    color: var(--text-color);
}

.cookie-btn.outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.cookie-link {
    margin-left: 15px;
    font-size: 0.9rem;
}

/* Blog Page Styles */
.page-banner {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    color: #fff;
    margin-bottom: 15px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.blog-container {
    padding: 80px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.category-list {
    list-style: none;
    padding: 0;
}

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

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.category-list a:hover {
    color: var(--primary-color);
}

.category-list span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    align-items: center;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-right: 15px;
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.popular-post .post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background-color: #f1f1f1;
    color: var(--text-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.cta-widget {
    background-color: var(--primary-light);
    color: #fff;
}

.cta-widget h3 {
    color: #fff;
}

.cta-widget h3::after {
    background-color: #fff;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-widget .btn {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-widget .btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Blog Post Styles */
.blog-post {
    padding: 50px 0 80px;
}

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

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-meta > span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

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

.post-category {
    background-color: var(--primary-light);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--border-radius-sm);
}

.post-featured-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-top: 30px;
    box-shadow: var(--shadow-md);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    margin-bottom: 50px;
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.post-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

.post-content ul, .post-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

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

.post-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}

.post-image {
    margin: 30px 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

.post-callout {
    background-color: rgba(0, 117, 196, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin: 30px 0;
}

.post-callout h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.post-callout p {
    margin-bottom: 10px;
}

.post-callout.warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-left-color: var(--warning-color);
}

.post-callout.warning h4 {
    color: var(--warning-color);
}

.callout-author {
    font-style: italic;
    font-size: 0.9rem;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 0;
}

.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.post-tags span {
    font-weight: 600;
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    margin: 5px;
    padding: 5px 12px;
    background-color: #f1f1f1;
    color: var(--text-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.author-bio {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin-top: 50px;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
}

.author-info h3 {
    margin-bottom: 5px;
}

.author-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.author-info p {
    margin-bottom: 15px;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    margin-right: 10px;
    transition: all var(--transition-normal);
}

.author-social a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.prev-post, .next-post {
    max-width: 45%;
}

.next-post {
    text-align: right;
}

.post-navigation a {
    color: var(--text-color);
}

.post-navigation span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.post-navigation i {
    font-size: 0.8rem;
}

.post-navigation p {
    font-weight: 600;
    margin-bottom: 0;
}

.post-navigation a:hover p {
    color: var(--primary-color);
}

.related-posts {
    margin-bottom: 50px;
}

.related-posts h3 {
    margin-bottom: 30px;
}

.post-card.small {
    display: flex;
    flex-direction: column;
}

.post-card.small .post-image {
    height: 180px;
}

.post-card.small .post-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.comments-section {
    margin-top: 60px;
}

.comments-section h3 {
    margin-bottom: 30px;
}

.comments-list {
    margin-bottom: 50px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment.reply {
    margin-left: 70px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    margin-bottom: 0;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.comment-content p {
    margin-bottom: 15px;
}

.comment-actions button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
}

.comment-actions button:hover {
    text-decoration: underline;
}

.comment-form h3 {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.form-submit {
    margin-top: 30px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

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

.contact-info, .contact-form-container {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 117, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p, .contact-text a {
    color: var(--text-color);
    margin-bottom: 0;
}

.social-contact h3 {
    margin-bottom: 15px;
}

.map-section {
    padding: 50px 0 80px;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    border: none;
    display: block;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius-md);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

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

.thank-you-message {
    text-align: center;
    padding: 20px 0;
}

.thank-you-message i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 15px;
}

.thank-you-message p {
    margin-bottom: 25px;
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.mission-vision {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.mission-box, .vision-box {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.icon-box i {
    font-size: 1.8rem;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.team-member {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

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

.member-info {
    padding: 25px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.member-info p {
    margin-bottom: 20px;
}

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

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.value-item {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 117, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.value-icon i {
    font-size: 1.5rem;
}

.value-item h3 {
    margin-bottom: 15px;
}

.value-item p {
    margin-bottom: 0;
}

/* Policy Pages Styles */
.policy-container {
    padding: 60px 0 80px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-intro {
    margin-bottom: 40px;
}

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

.policy-section h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-section h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-section p, .policy-section ul, .policy-section ol {
    margin-bottom: 20px;
}

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

.refund-steps {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: var(--border-radius-md);
    margin: 20px 0;
}

.refund-steps h3 {
    margin-top: 0;
}

.refund-steps ol {
    padding-left: 20px;
}

/* Blog-specific Components */
.product-comparison {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-item {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 0;
    right: 30px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.product-item.best-choice {
    border: 2px solid var(--primary-color);
}

.product-item.value-choice .product-badge {
    background-color: var(--secondary-color);
}

.product-image {
    text-align: center;
    margin: 20px 0;
}

.product-image img {
    max-height: 200px;
    margin: 0 auto;
}

.product-specs {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
}

.product-specs p {
    margin-bottom: 10px;
}

.product-specs p:last-child {
    margin-bottom: 0;
}

.product-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.pros, .cons {
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.pros {
    background-color: rgba(40, 167, 69, 0.1);
}

.cons {
    background-color: rgba(220, 53, 69, 0.1);
}

.pros h4, .cons h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.pros h4 {
    color: var(--success-color);
}

.cons h4 {
    color: var(--danger-color);
}

.product-conclusion {
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.product-recommendation {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin: 30px 0;
}

.device-recommendation {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.option-tier {
    margin-bottom: 20px;
}

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

.installation-option {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.installation-option h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.installation-option p {
    margin-bottom: 10px;
}

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

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

.integration-item {
    background-color: #f9f9f9;
    border-radius: var(--border-radius-sm);
    padding: 20px;
    display: flex;
    align-items: flex-start;
}

.integration-icon {
    background-color: rgba(0, 117, 196, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.integration-content h4 {
    margin-bottom: 10px;
}

.integration-content ul {
    margin-bottom: 0;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p, .faq-item ul {
    margin-bottom: 15px;
}

.faq-item p:last-child, .faq-item ul:last-child {
    margin-bottom: 0;
}

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

.threat-item {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.threat-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 20px;
}

.threat-description h4 {
    margin-bottom: 5px;
}

.threat-description p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.benefit-item {
    text-align: center;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius-md);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    margin-bottom: 10px;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.plan {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.plan-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.plan-header h3 {
    color: #fff;
    margin-bottom: 5px;
}

.plan-budget {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.plan-phases {
    padding: 25px;
}

.phase {
    margin-bottom: 25px;
}

.phase:last-child {
    margin-bottom: 0;
}

.phase h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.monitoring-option {
    background-color: #f9f9f9;
    border-radius: var(--border-radius-md);
    padding: 25px;
}

.monitoring-option h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.option-details p {
    margin-bottom: 10px;
}

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

.training-component {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.training-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 117, 196, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.training-content h4 {
    margin-bottom: 10px;
}

.training-content ul {
    margin-bottom: 0;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.column h3 {
    margin-bottom: 20px;
}

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

.automation-item {
    background-color: #f9f9f9;
    border-radius: var(--border-radius-md);
    padding: 25px;
    display: flex;
    align-items: flex-start;
}

.automation-icon {
    background-color: rgba(0, 117, 196, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.automation-content h4 {
    margin-bottom: 10px;
}

.automation-content p {
    margin-bottom: 10px;
}

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

.brand-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.brand-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.brand-item p {
    margin-bottom: 10px;
}

.brand-item p:last-child {
    margin-bottom: 0;
}

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

.profile {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.profile h4 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.profile h4 i {
    margin-right: 10px;
}

.profile p {
    margin-bottom: 10px;
}

.profile p:last-child {
    margin-bottom: 0;
}

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

.cost-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.cost-item h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.security-component {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius-md);
    padding: 25px;
}

.component-image {
    align-self: center;
}

.component-details h4 {
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .product-pros-cons, .cost-breakdown, .two-column-section {
        grid-template-columns: 1fr;
    }
    
    .security-component {
        grid-template-columns: 1fr;
    }
    
    .product-recommendation, .device-recommendation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: -1;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        z-index: 1000;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .featured-posts, .about-intro, .mission-vision, .team-section, .values-section, .contact-section {
        padding: 60px 0;
    }
    
    .about-grid, .mission-vision-grid, .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .prev-post, .next-post {
        max-width: 100%;
    }
    
    .next-post {
        text-align: left;
    }
    
    .comment.reply {
        margin-left: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .mistakes-content, .benefits-grid, .threat-statistics, .implementation-plans, .monitoring-options, .training-components, .automation-examples, .integration-examples, .brands-grid, .user-profiles {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-bottom: 15px;
    }
    
    .comment.reply {
        margin-left: 20px;
    }
    
    .installation-options {
        grid-template-columns: 1fr;
    }
}
