/* Base Styles */
:root {
    --primary-color: #4e57d4;
    --primary-dark: #3a42b3;
    --secondary-color: #ff6b6b;
    --accent-color: #feca57;
    --text-color: #2d3436;
    --text-light: #636e72;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --background-dark: #2d3436;
    --border-color: #e0e0e0;
    --success-color: #55efc4;
    --error-color: #ff7675;
    --warning-color: #fdcb6e;
    --shadow-color: rgba(0, 0, 0, 0.1);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--background-light);
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

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

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

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

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

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    font-size: 16px;
}

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

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

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

nav {
    display: flex;
    align-items: center;
}

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

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a.active:after,
.nav-menu a:hover:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--background-light);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

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

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

.feature-card h3 {
    margin-bottom: 15px;
}

/* Latest Posts Section */
.latest-posts {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--primary-dark);
}

.posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.post-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

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

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

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

.post-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
}

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

.post-content {
    padding: 25px;
}

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

.post-content h3 a {
    color: var(--text-color);
    transition: var(--transition);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-meta {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-meta span {
    margin-right: 15px;
}

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

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

.posts-grid.full-width .post-card {
    flex: 0 0 calc(33.333% - 20px);
}

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

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

.cta-content h2 {
    color: var(--background-white);
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.subscription-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.subscription-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--secondary-color);
}

.subscription-form button:hover {
    background-color: darken(var(--secondary-color), 10%);
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--background-white);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 250px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    flex: 0 0 200px;
}

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

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

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

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

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

.footer-contact {
    flex: 0 0 300px;
}

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

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

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

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

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

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.current-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 20px;
    text-align: center;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: var(--background-dark);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-customize {
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-reject {
    background-color: var(--error-color);
    color: var(--background-white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-more {
    font-size: 0.9rem;
    text-decoration: underline;
}

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

.page-header h1 {
    color: var(--background-white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Blog Page */
.blog-content {
    padding: 80px 0;
}

.search-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.search-box {
    flex: 0 0 60%;
    display: flex;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    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: var(--background-white);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.filter-box {
    flex: 0 0 35%;
}

.filter-box select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background-color: var(--background-white);
    cursor: pointer;
}

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

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: var(--background-white);
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

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

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

.pagination a.next {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

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

/* Blog Post */
.post-header {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 60px 0;
    text-align: center;
}

.post-header h1 {
    color: var(--background-white);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta-full {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.post-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.post-details span {
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.post-details i {
    margin-right: 8px;
}

.post-content {
    padding: 80px 0;
}

.post-wrapper {
    display: flex;
    gap: 40px;
}

.post-main {
    flex: 0 0 calc(70% - 20px);
}

.post-sidebar {
    flex: 0 0 calc(30% - 20px);
}

.featured-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

article {
    margin-bottom: 40px;
}

article h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

article h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

article h4 {
    margin-top: 25px;
    margin-bottom: 10px;
}

article p {
    margin-bottom: 20px;
    line-height: 1.8;
}

article ul, article ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

article li {
    margin-bottom: 10px;
}

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

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

.post-tags a {
    background-color: var(--background-light);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.post-share {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.post-share span {
    margin-right: 15px;
    font-weight: 600;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-light);
    color: var(--text-color);
    margin-right: 10px;
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.post-author-bio {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    margin-bottom: 40px;
}

.post-author-bio .author-avatar {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

.author-info {
    flex: 1;
}

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

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

.author-social {
    display: flex;
}

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

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

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

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

.related-grid {
    display: flex;
    gap: 20px;
}

.related-post {
    flex: 1;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

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

.related-post h4 {
    padding: 15px;
    font-size: 1rem;
}

.related-post h4 a {
    color: var(--text-color);
    transition: var(--transition);
}

.related-post h4 a:hover {
    color: var(--primary-color);
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

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

.author-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
}

.author-card h4 {
    margin-bottom: 5px;
}

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

.popular-post {
    display: flex;
    margin-bottom: 20px;
}

.popular-post:last-child {
    margin-bottom: 0;
}

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

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

.popular-post-content h4 a {
    color: var(--text-color);
    transition: var(--transition);
}

.popular-post-content h4 a:hover {
    color: var(--primary-color);
}

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

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

.categories li {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.categories li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

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

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

.categories span {
    background-color: var(--background-light);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.cta-widget {
    background-color: var(--primary-color);
    color: var(--background-white);
    text-align: center;
}

.cta-widget h3 {
    color: var(--background-white);
    border-bottom: none;
}

.cta-widget p {
    margin-bottom: 20px;
}

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

.cta-widget .btn-primary:hover {
    background-color: darken(var(--secondary-color), 10%);
}

/* About Page */
.about-intro {
    padding: 80px 0;
    background-color: var(--background-white);
}

.about-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-intro-text {
    flex: 0 0 55%;
}

.about-intro-image {
    flex: 0 0 40%;
}

.about-intro-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

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

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

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

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--background-white);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

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

.achievements {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--background-white);
}

.achievements .section-title {
    color: var(--background-white);
}

.achievements .section-title:after {
    background-color: var(--background-white);
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.achievement-card {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.achievement-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

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

.testimonial-slide {
    padding: 20px;
}

.testimonial-content {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

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

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

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.contact-flex {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-form-container {
    flex: 0 0 55%;
}

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

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

.contact-icon {
    flex: 0 0 50px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-text h3 {
    margin-bottom: 5px;
}

.contact-text p {
    margin-bottom: 0;
}

.contact-text a {
    color: var(--text-color);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-color);
}

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

.contact-form {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

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

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

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

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

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

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

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

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--background-light);
    cursor: pointer;
}

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

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

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

.modal-content {
    position: relative;
    background-color: var(--background-white);
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    text-align: center;
    animation: modalopen 0.3s;
}

@keyframes modalopen {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

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

.thank-you-content {
    padding: 20px 0;
}

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

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

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

.post-category {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .post-wrapper {
        flex-direction: column;
    }
    
    .post-main, .post-sidebar {
        flex: 0 0 100%;
    }
    
    .about-intro-content {
        flex-direction: column;
    }
    
    .about-intro-text, .about-intro-image {
        flex: 0 0 100%;
    }
    
    .contact-flex {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        flex: 0 0 100%;
    }
    
    .team-member {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px var(--shadow-color);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .feature-card, .post-card, .value-card, .achievement-card {
        min-width: 100%;
    }
    
    .footer-content > div {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .posts-grid.full-width .post-card {
        flex: 0 0 100%;
    }
    
    .related-grid {
        flex-direction: column;
    }
    
    .search-filter {
        flex-direction: column;
    }
    
    .search-box, .filter-box {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .team-member {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .post-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-details span {
        margin: 5px 0;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .subscription-form input, .subscription-form button {
        width: 100%;
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .post-author-bio .author-avatar {
        margin: 0 auto 20px;
    }
    
    .author-social {
        justify-content: center;
    }
}
