/* Base Styles and Variables */
:root {
  --primary-color: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #818cf8;
  --secondary-color: #10b981;
  --secondary-dark: #059669;
  --accent-color: #f59e0b;
  --dark-color: #1f2937;
  --medium-dark-color: #374151;
  --medium-color: #6b7280;
  --light-color: #f3f4f6;
  --white-color: #ffffff;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Poppins', var(--font-primary);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius-sm: 0.25rem;
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --transition: all 0.3s ease;
  --container-width: 1280px;
}

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

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

.btn-secondary {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--light-color);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Header */
header {
  background-color: var(--white-color);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

nav ul {
  display: flex;
  gap: 2rem;
}

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

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

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

.menu-toggle {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 5rem 0;
  background-image: linear-gradient(rgba(31, 41, 55, 0.8), rgba(31, 41, 55, 0.8)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
}

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

.feature-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

.feature-card h3 {
  margin-bottom: 1rem;
}

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

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.post-image {
  height: 200px;
  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-content {
  padding: 1.5rem;
}

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

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

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

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

.view-all {
  text-align: center;
}

/* Unknown Facts Section */
.unknown-facts {
  padding: 5rem 0;
  background-color: var(--white-color);
}

.facts-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.fact {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.fact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  flex-shrink: 0;
}

.fact-content h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

/* Comparison Section */
.comparison {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.table-container {
  overflow-x: auto;
  max-width: 100%;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white-color);
}

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

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

.comparison-table th:first-child {
  border-top-left-radius: var(--border-radius);
}

.comparison-table th:last-child {
  border-top-right-radius: var(--border-radius);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(79, 70, 229, 0.05);
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: var(--white-color);
}

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

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

.newsletter-form {
  display: flex;
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  outline: none;
}

.newsletter-form button {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 0 1.5rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--medium-dark-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 0 2rem;
}

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

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

.footer-links h3, .footer-legal h3, .footer-social h3 {
  color: var(--white-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul, .footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a, .footer-legal a {
  color: var(--light-color);
  transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
  color: var(--primary-light);
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--medium-dark-color);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background-color: var(--white-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.btn-cookie {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

.btn-cookie.customize, .btn-cookie.decline {
  background-color: var(--light-color);
  color: var(--dark-color);
}

.btn-cookie.customize:hover, .btn-cookie.decline:hover {
  background-color: var(--medium-color);
  color: var(--white-color);
}

.cookie-learn-more {
  font-size: 0.875rem;
  color: var(--primary-color);
}

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

.page-header h1 {
  color: var(--white-color);
  margin-bottom: 0.5rem;
}

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

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

.blog-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.blog-post .post-image {
  height: 100%;
}

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

.blog-post h2 {
  margin-bottom: 0.5rem;
}

.blog-post h2 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.blog-post h2 a:hover {
  color: var(--primary-color);
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--medium-color);
  font-size: 0.9rem;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-color);
}

.search-widget form {
  display: flex;
  gap: 0.5rem;
}

.search-widget input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--light-color);
  border-radius: var(--border-radius-sm);
}

.search-widget button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: var(--border-radius-sm);
  width: 44px;
  cursor: pointer;
  transition: var(--transition);
}

.search-widget button:hover {
  background-color: var(--primary-dark);
}

.categories-widget ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.categories-widget a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-color);
  transition: var(--transition);
}

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

.categories-widget span {
  background-color: var(--light-color);
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.popular-post {
  margin-bottom: 1.5rem;
}

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

.popular-post a {
  display: flex;
  gap: 1rem;
  color: var(--dark-color);
}

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

.popular-post h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

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

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

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: var(--light-color);
  color: var(--medium-dark-color);
  border-radius: 1rem;
  font-size: 0.8rem;
  transition: var(--transition);
}

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

/* Blog Single Post */
.blog-single {
  padding: 4rem 0;
}

.blog-header {
  margin-bottom: 2rem;
  text-align: center;
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-categories span {
  background-color: var(--primary-light);
  color: var(--white-color);
  padding: 0.35rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
}

.blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  color: var(--medium-color);
  margin-top: 1.5rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

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

.blog-content-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
}

.blog-content p.lead {
  font-size: 1.2rem;
  color: var(--medium-dark-color);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.blog-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.quote-block {
  margin: 2.5rem 0;
  padding: 2rem;
  background-color: var(--light-color);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
}

.quote-block blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-block cite {
  font-style: normal;
  font-weight: 500;
  color: var(--medium-dark-color);
}

.image-with-caption {
  margin: 2.5rem 0;
}

.image-with-caption img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--medium-color);
  margin-top: 0.75rem;
}

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

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

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

.author-bio p {
  color: var(--medium-dark-color);
  margin-bottom: 0;
}

/* Share Widget */
.share-widget {
  text-align: center;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  color: var(--white-color);
  transition: var(--transition);
}

.share-facebook {
  background-color: #1877f2;
}

.share-twitter {
  background-color: #1da1f2;
}

.share-linkedin {
  background-color: #0a66c2;
}

.share-buttons a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Related Posts */
.related-post {
  margin-bottom: 1.25rem;
}

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

.related-post a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--dark-color);
}

.related-post img {
  border-radius: var(--border-radius-sm);
}

.related-post h4 {
  font-size: 1rem;
  transition: var(--transition);
  margin-bottom: 0;
}

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

/* Post Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-color);
}

.nav-previous, .nav-next {
  max-width: 45%;
}

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

.nav-subtitle {
  display: block;
  font-size: 0.8rem;
  color: var(--medium-color);
  margin-bottom: 0.5rem;
}

.nav-title {
  font-weight: 500;
  color: var(--dark-color);
  transition: var(--transition);
}

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

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 4rem 0;
  margin-top: 4rem;
}

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

.cta-content h2 {
  color: var(--white-color);
}

.cta-form {
  display: flex;
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  outline: none;
}

/* About Page Styles */
.about-content {
  padding: 4rem 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
}

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

/* Values Section */
.about-values {
  margin-bottom: 4rem;
}

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

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

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

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

.value-card h3 {
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  margin-bottom: 4rem;
}

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

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

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

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

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

.team-member h3 {
  margin-bottom: 0.25rem;
}

.team-member > p {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member > p + p {
  color: var(--medium-color);
  font-weight: normal;
}

.team-member > *:not(img) {
  padding: 0 1.5rem;
}

.team-member > *:last-child {
  padding-bottom: 1.5rem;
}

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

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

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

/* Testimonials */
.testimonials {
  margin-bottom: 4rem;
}

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

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  position: relative;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 0;
}

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

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

.testimonial-author h4 {
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--medium-color);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* CTA Block */
.cta-block {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.cta-block h2 {
  color: var(--white-color);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Contact Page Styles */
.contact-content {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

.info-card p {
  margin-bottom: 0.5rem;
}

.info-card p:last-child {
  margin-bottom: 0;
  color: var(--medium-color);
  font-size: 0.9rem;
}

.social-connect {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.social-connect h3 {
  margin-bottom: 1.5rem;
}

.social-connect .social-icons {
  justify-content: center;
}

.contact-form-container {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

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

.contact-form-container > p {
  margin-bottom: 2rem;
  color: var(--medium-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 500;
}

.form-group input, .form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--light-color);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
}

.form-checkbox input {
  margin-top: 0.3rem;
}

.form-checkbox label {
  font-weight: normal;
  font-size: 0.9rem;
}

/* Map Container */
.map-container {
  margin-bottom: 4rem;
}

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

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

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

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}

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

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

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

.modal-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--medium-color);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--dark-color);
}

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

.thank-you-message svg {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .blog-content .container,
  .blog-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    margin-top: 3rem;
  }
  
  .about-intro {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .post-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post .post-image {
    height: 200px;
  }
  
  .testimonial-slider {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .fact {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav-previous, .nav-next {
    max-width: none;
  }
  
  .nav-next {
    text-align: left;
  }
  
  .newsletter-form,
  .cta-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .team-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card {
    padding: 1.5rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}
