/* Base Styles */
:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #64b5f6;
    --secondary-color: #26a69a;
    --secondary-dark: #00897b;
    --accent-color: #ffc107;
    --text-color: #333;
    --text-light: #757575;
    --background-color: #f9f9f9;
    --white: #fff;
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --gray-dark: #9e9e9e;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition-speed: 0.3s;
    --font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

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

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

ul {
    list-style-type: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    box-shadow: var(--shadow-sm);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

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

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

.btn-centered {
    display: block;
    margin: 30px auto;
    max-width: 200px;
}

/* Forms */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

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

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

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

/* Header */
header {
    background-color: var(--primary-color);
    position: relative;
    color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-md);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: var(--radius-full);
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--white);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--white);
    padding: 5px 10px;
    font-weight: 500;
    transition: color var(--transition-speed), background-color var(--transition-speed);
    border-radius: var(--radius-sm);
}

nav ul li a:hover, nav ul li a.active {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
}

nav ul li a i {
    margin-right: 5px;
}

/* Hero Section */
.hero, .about-hero, .services-hero, .contact-hero, .blog-hero {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 80px 20px;
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Recent Posts Section */
.recent-posts {
    padding: 80px 20px;
    background-color: var(--gray-light);
}

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

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

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

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

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

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials h2 {
    color: var(--white);
    margin-bottom: 40px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 30px;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--radius-md);
    color: var(--text-color);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.testimonial-content:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 10px;
    color: var(--primary-light);
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author span {
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--white);
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.subscribe-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Footer */
footer {
    background-color: #1a237e;
    color: var(--white);
    padding: 60px 20px 20px;
    margin-top: auto;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-speed);
}

.footer-links ul li a:hover {
    color: var(--white);
}

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

.footer-contact p i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

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

.page-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.95);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-content a {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.cookie-content a:hover {
    text-decoration: underline;
}

/* Blog Page Styles */
.blog-posts {
    padding: 60px 20px;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.blog-sidebar {
    flex: 0 0 300px;
}

.posts-container {
    flex: 1;
}

.sidebar-section {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-section h3 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

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

.popular-post h4 {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.blog-post {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.post-header {
    position: relative;
}

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

.post-meta {
    display: flex;
    gap: 15px;
    padding: 20px 20px 0;
}

.category, .date, .tag {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background-color: var(--primary-light);
    color: var(--white);
    font-weight: 500;
}

.tag {
    background-color: var(--gray-light);
    color: var(--text-light);
}

.post-header h2 {
    padding: 10px 20px 20px;
    font-size: 1.8rem;
}

.post-body {
    padding: 0 20px 20px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: var(--radius-sm);
    background-color: var(--white);
    color: var(--text-color);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.pagination a.current {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination a.next {
    margin-left: 15px;
}

/* About Page Styles */
.about-story, .team-section {
    padding: 80px 20px;
    background-color: var(--white);
}

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

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

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

.team-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.member-info {
    padding: 20px;
}

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

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--gray-light);
    color: var(--text-color);
    border-radius: var(--radius-full);
    margin-right: 10px;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

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

/* Services Page Styles */
.services-intro {
    padding: 60px 20px;
    background-color: var(--white);
    text-align: center;
}

.services-intro p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-list {
    padding: 60px 20px;
    background-color: var(--gray-light);
}

.service-item {
    display: flex;
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.service-icon {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.service-icon i {
    font-size: 5rem;
}

.service-content {
    flex: 1;
    padding: 30px;
}

.service-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.workshops-webinars {
    padding: 80px 20px;
    background-color: var(--primary-dark);
    color: var(--white);
}

.workshops-webinars h2, .workshops-webinars p {
    text-align: center;
    color: var(--white);
}

.workshops-webinars p {
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.event-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    color: var(--text-color);
    box-shadow: var(--shadow-md);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.date-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-details {
    padding: 15px;
    flex: 1;
}

.event-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.event-details p {
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 10px;
}

.packages {
    padding: 80px 20px;
    background-color: var(--white);
}

.packages h2, .packages > p {
    text-align: center;
}

.packages > p {
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.package-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid var(--gray);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--radius-sm);
}

.package-header {
    background-color: var(--gray-light);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.package-features {
    padding: 30px;
}

.package-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.package-features ul li i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.package-features ul li i.fa-check {
    color: var(--success-color);
}

.package-features ul li i.fa-times {
    color: var(--error-color);
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--gray-light);
}

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

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

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--primary-dark);
    color: var(--white);
}

.cta-section h2, .cta-section p {
    color: var(--white);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.contact-info {
    padding-right: 30px;
}

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

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

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

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

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

.contact-form-container {
    background-color: var(--gray-light);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form {
    margin-top: 20px;
}

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

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

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

.newsletter-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--primary-dark);
    color: var(--white);
}

.newsletter-section h2, .newsletter-section p {
    color: var(--white);
}

.newsletter-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

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

.newsletter-form input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

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

.btn-modal {
    margin-top: 20px;
}

/* Parallax Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/11.jpg');
}

.services-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/9.jpg');
}

.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/10.jpg');
}

.blog-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/2.jpg');
}

.about-mission {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/15.jpg');
}

.workshops-webinars {
    background-image: linear-gradient(rgba(30, 136, 229, 0.9), rgba(21, 101, 192, 0.9)), url('images/16.jpg');
}

.newsletter-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/8.jpg');
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-icon {
        height: 150px;
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero, .about-hero, .services-hero, .contact-hero, .blog-hero {
        padding: 60px 15px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .features, .posts-grid, .team-grid, .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form, .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-form input, .newsletter-form input {
        border-radius: var(--radius-sm);
        margin-bottom: 10px;
    }
    
    .subscribe-form button, .newsletter-form button {
        border-radius: var(--radius-sm);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .blog-posts {
        flex-direction: column;
    }
    
    .blog-sidebar {
        order: 2;
    }
    
    .posts-container {
        order: 1;
    }
    
    .post-header img {
        height: 200px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
