/* Base */
:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2ecc71;
    --secondary-dark: #27ae60;
    --tertiary-color: #9b59b6;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333333;
    --text-light: #7f8c8d;
    --border-color: #e0e0e0;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --success-color: #27ae60;
    --info-color: #3498db;
    --font-main: 'Roboto', 'Helvetica Neue', sans-serif;
    --font-heading: 'Poppins', 'Helvetica Neue', sans-serif;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9fafb;
}

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

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

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

ul {
    list-style: none;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

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

.btn-tertiary:hover {
    background-color: var(--light-color);
}

.center-btn {
    text-align: center;
    margin: 2rem 0;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

nav ul {
    display: flex;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* What You Learn Section */
.what-you-learn {
    padding: 5rem 0;
    background-color: white;
}

.what-you-learn h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.learn-item {
    text-align: center;
    padding: 2rem;
    background-color: #f9fafc;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.learn-item:hover {
    transform: translateY(-10px);
}

.learn-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.learn-item h3 {
    margin-bottom: 1rem;
}

/* Featured Posts */
.featured-posts {
    padding: 5rem 0;
    background-color: #f9fafc;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.post-content {
    padding: 1.5rem;
}

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

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

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

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--dark-color);
    color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author h4 {
    color: white;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Blog Page */
.blog-content {
    padding: 4rem 0;
}

.blog-filters {
    margin-bottom: 3rem;
}

.search-box {
    display: flex;
    margin-bottom: 1.5rem;
}

.search-box input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.categories span {
    font-weight: 600;
}

.categories a {
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background-color: #f1f1f1;
    color: var(--text-color);
    transition: var(--transition);
}

.categories a:hover,
.categories a.active {
    background-color: var(--primary-color);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-card-image {
    height: 100%;
    min-height: 250px;
}

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

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-date {
    color: var(--text-light);
}

.blog-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Newsletter */
.newsletter {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0;
}

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

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1rem;
}

/* About Page */
.about-intro {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.value-item {
    background-color: #f9fafc;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-section {
    padding: 4rem 0;
    background-color: #f9fafc;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

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

.team-member h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    margin-bottom: 1.5rem;
}

.team-member p:last-of-type {
    padding-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.member-social a {
    color: var(--text-light);
    transition: var(--transition);
}

.member-social a:hover {
    color: var(--primary-color);
}

.stats-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

.stats-section h2 {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
}

.partners-section {
    padding: 5rem 0;
}

.partners-section h2, .partners-section p {
    text-align: center;
}

.partners-section p {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner img {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--primary-color);
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.social-contact {
    margin-top: 3rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--dark-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-form-container h2 {
    margin-bottom: 1rem;
}

.contact-form-container p {
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
}

.map-section {
    padding: 4rem 0;
    background-color: #f9fafc;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

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

.modal-content {
    background-color: white;
    max-width: 500px;
    margin: 15% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
}

.thank-you-content {
    text-align: center;
}

.thank-you-content svg {
    margin: 0 auto 1.5rem;
}

.thank-you-content h2 {
    margin-bottom: 1rem;
}

.thank-you-content p {
    margin-bottom: 2rem;
}

/* Blog Post */
.post-header {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    color: white;
    padding: 4rem 0 2rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-category {
    color: #ffffff;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 30px;
}

.post-date, .post-author {
    color: rgba(255, 255, 255, 0.9);
}

.post-header h1 {
    color: white;
    font-size: 2.8rem;
    max-width: 800px;
}

.post-featured-image {
    margin-top: -4rem;
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.post-content {
    padding-bottom: 4rem;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
}

.post-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.post-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.post-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.post-body ul, .post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-body ul li, .post-body ol li {
    margin-bottom: 0.5rem;
}

.post-body img {
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.back-to-blog, .prev-post, .next-post {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.post-nav-links {
    display: flex;
    gap: 2rem;
}

.related-posts {
    margin: 4rem 0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.related-post {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.related-post h3 {
    padding: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.post-comments {
    margin-top: 4rem;
}

.post-comments h2 {
    margin-bottom: 2rem;
}

.comment-form {
    background-color: #f9fafc;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

.author-bio {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f9fafc;
    border-radius: var(--border-radius);
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.author-info h3 {
    margin-bottom: 0.5rem;
}

.author-info p {
    margin-bottom: 0;
}

/* Post styling elements */
.info-box, .note-box {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.info-box {
    background-color: #e3f2fd;
    border-left: 4px solid var(--info-color);
}

.note-box {
    background-color: #fff8e1;
    border-left: 4px solid var(--warning-color);
}

.school-item, .framework-item, .learning-step, .practice-item, .specialization-item, .factor-item, .testimonial-card, .bootcamp-growth, .offerings-grid, .use-cases, .learning-path, .success-factors, .conclusion-section, .challenges-opportunities, .communities-grid, .job-market, .learning-resources, .alternatives-grid, .foda-analysis {
    margin: 2rem 0;
}

.school-details, .framework-intro, .specialization-grid, .practice-items, .use-case, .alternatives-grid, .challenges-opportunities, .communities-grid, .job-market, .learning-resources, .conclusion-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table, .certifications-table, .bootcamps-table, .jobs-table, .salary-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td, .certifications-table th, .certifications-table td, .bootcamps-table th, .bootcamps-table td, .jobs-table th, .jobs-table td, .salary-table th, .salary-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th, .certifications-table th, .bootcamps-table th, .jobs-table th, .salary-table th {
    background-color: #f1f1f1;
    font-weight: 600;
}

.code-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.code-block {
    background-color: #282c34;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.code-block h3 {
    background-color: #21252b;
    color: white;
    padding: 1rem;
    margin: 0;
}

.code-block pre {
    padding: 1.5rem;
    overflow-x: auto;
    color: #abb2bf;
    font-family: 'Fira Code', monospace;
    margin: 0;
}

.code-block code {
    font-family: 'Fira Code', monospace;
}

.framework-logo img, .chart-bars {
    max-width: 100px;
    margin-bottom: 1rem;
}

.advantage {
    color: var(--success-color);
}

.disadvantage {
    color: var(--danger-color);
}

.rank-high {
    color: var(--success-color);
    font-weight: 600;
}

.rank-medium {
    color: var(--warning-color);
    font-weight: 600;
}

.rank-low {
    color: var(--danger-color);
    font-weight: 600;
}

.example-apps, .chart-caption, .salary-note, .table-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

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

.mixed {
    color: var(--warning-color);
}

.challenge {
    color: var(--danger-color);
}

.strengths {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.weaknesses {
    background-color: #ffebee;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.opportunities {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.threats {
    background-color: #fff8e1;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 4rem;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-links ul {
    margin-top: 1.5rem;
}

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

.footer-links a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover, .footer-legal a:hover {
    color: white;
}

.footer-contact svg {
    margin-right: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.cookie-more-info {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .post-header h1 {
        font-size: 2.2rem;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image {
        height: 250px;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .code-comparison {
        grid-template-columns: 1fr;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav li {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .posts-grid, .learn-grid, .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .post-nav-links {
        width: 100%;
        justify-content: space-between;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Print styles */
@media print {
    header, footer, .cookie-banner, .post-navigation, .related-posts, .post-comments {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
    
    .post-featured-image {
        max-height: 300px;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
}
