/* Base Styles */
:root {
  --primary-color: #1e6b7b;
  --primary-light: #2a8699;
  --primary-dark: #185561;
  --secondary-color: #e85c41;
  --secondary-light: #f27559;
  --secondary-dark: #d13f24;
  --dark-color: #202830;
  --light-color: #f5f7f8;
  --gray-color: #66757f;
  --gray-light: #9aa7b0;
  --gray-dark: #495057;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  
  --container-width: 1200px;
  --header-height: 80px;
  
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

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

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

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

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

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

section {
  padding: 5rem 0;
}

/* Buttons */
.btn, button[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}

.btn:hover, button[type="submit"]:hover {
  background-color: var(--primary-light);
  color: white;
}

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

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

.btn-3d {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  position: relative;
  box-shadow: 0 6px 0 var(--secondary-dark);
  transform: translateY(-2px);
  transition: all var(--transition-fast);
}

.btn-3d:hover {
  transform: translateY(0);
  box-shadow: 0 4px 0 var(--secondary-dark);
  color: white;
}

.btn-3d:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--secondary-dark);
}

.btn-accept {
  background-color: var(--success-color);
}

.btn-decline {
  background-color: var(--gray-color);
}

.btn-customize {
  background-color: var(--info-color);
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  color: var(--secondary-color);
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

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

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

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

/* Quote Section */
.quote-section {
  background-color: var(--light-color);
  padding: 4rem 0;
}

.quote-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}

.quote-box i {
  color: var(--primary-light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.quote-box blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  line-height: 1.5;
}

.quote-box .quote-author {
  font-weight: 600;
  color: var(--gray-dark);
  font-size: 1.1rem;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: white;
}

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

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

.feature-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.feature-icon {
  background-color: var(--primary-color);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

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

.feature-card p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

.post-content {
  padding: 1.5rem;
}

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

.post-content p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
  position: relative;
}

.read-more::after {
  content: '→';
  margin-left: 0.25rem;
  transition: transform var(--transition-fast);
}

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

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials */
.testimonials {
  background-color: white;
  padding: 6rem 0;
}

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

.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1.5rem 0.5rem;
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.testimonial-slider::-webkit-scrollbar {
  display: none;  /* Chrome, Safari, Opera */
}

.testimonial {
  flex: 0 0 calc(50% - 1rem);
  min-width: 300px;
}

.testimonial-content {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 30px;
  width: 24px;
  height: 24px;
  background-color: var(--light-color);
  transform: rotate(45deg);
}

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

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

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

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

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

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 5rem 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-logo p {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.footer-links h3, .footer-legal h3, .footer-contact h3, .footer-social h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after, .footer-legal h3::after, .footer-contact h3::after, .footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-light);
}

.footer-contact i {
  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;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color var(--transition-fast);
  color: white;
}

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

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

.footer-bottom p {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(150%);
  transition: transform var(--transition-medium);
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

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

/* Blog Layout */
.blog-grid {
  padding: 5rem 0;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 300px;
}

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

.blog-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.blog-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
  flex-grow: 1;
}

/* Blog Post */
.blog-post {
  padding: 5rem 0;
}

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

.post-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--gray-color);
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.post-content h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.post-content h4 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.post-content p {
  margin-bottom: 1.5rem;
}

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

.post-content ul li, .post-content ol li {
  margin-bottom: 0.75rem;
}

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

.post-content blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background-color: var(--light-color);
  border-left: 5px solid var(--primary-color);
  font-style: italic;
  position: relative;
}

.post-content blockquote::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  color: rgba(0, 0, 0, 0.1);
  font-family: serif;
}

.post-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  text-align: right;
}

.post-tags {
  margin: 3rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.post-tags span {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-tags a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius-sm);
  color: var(--gray-dark);
  font-size: 0.9rem;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

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

.post-share {
  margin: 3rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--gray-dark);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

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

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

.prev-post, .next-post {
  flex: 0 0 calc(50% - 1rem);
}

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

.post-navigation a {
  color: var(--dark-color);
  transition: color var(--transition-fast);
}

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

.post-navigation span {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.next-post span {
  justify-content: flex-end;
}

.post-navigation h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

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

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

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

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

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

.related-card h4 {
  padding: 1rem;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Products Page */
.category-nav {
  margin-bottom: 3rem;
}

.category-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius-md);
  color: var(--gray-dark);
  font-weight: 600;
  transition: all var(--transition-fast);
}

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

.product-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.product-section:last-of-type {
  border-bottom: none;
}

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

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-color);
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

.product-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  z-index: 1;
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.product-description {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffc107;
  font-size: 0.9rem;
}

.product-rating span {
  color: var(--gray-color);
  margin-left: 0.5rem;
}

.product-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.product-features {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-item {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.feature-item h3 {
  margin: 1rem 0;
}

.feature-item p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

/* About Page */
.about-story {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.about-text h2 {
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-mission {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.mission-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.mission-statement p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--primary-dark);
}

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

.value-item {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

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

.value-item p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

.about-process {
  padding: 5rem 0;
}

.about-process h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 70px;
  left: 25px;
  height: calc(100% - 50px);
  width: 2px;
  background-color: var(--primary-light);
}

.step-number {
  flex: 0 0 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.step-content h3 {
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--gray-dark);
}

.team-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--gray-dark);
}

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

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

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

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

.team-member h3 {
  margin: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.member-social {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 1.5rem 2rem;
}

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

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

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

.achievements-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2.5rem;
}

.achievement-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.achievement-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.achievement-count {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.achievement-item p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

.partners-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.partners-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.partners-section > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--gray-dark);
}

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

.partner-logo {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  max-height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition-medium), opacity var(--transition-medium);
}

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

/* Contact Page */
.contact-info {
  padding: 5rem 0;
}

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

.info-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

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

.info-card p {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  transition: background-color var(--transition-fast);
}

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

.contact-form-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.contact-form-section .container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}

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

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

.form-container > p {
  margin-bottom: 2.5rem;
  color: var(--gray-dark);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius-md);
  background-color: var(--light-color);
  transition: border-color var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

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

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
}

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

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

.map-container h2 {
  padding: 1.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--gray-light);
}

.map {
  height: 300px;
}

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

.map-info {
  padding: 1.5rem;
}

.map-info p {
  margin-bottom: 1rem;
}

.map-info p:first-of-type {
  font-weight: 600;
}

.map-info p:last-of-type {
  margin-bottom: 1.5rem;
}

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

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

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

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: white;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.accordion-icon::before {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.accordion-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}

.accordion-item.active .accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-content {
  background-color: white;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.accordion-item.active .accordion-content {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

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

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
}

.newsletter-form button {
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.success-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: white;
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.popup-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
}

.popup-header i {
  font-size: 2rem;
  margin-right: 1rem;
  color: var(--success-color);
}

.popup-header h3 {
  color: white;
  margin-bottom: 0;
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.popup-body {
  padding: 2rem 1.5rem;
}

.popup-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-light);
  text-align: right;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 2rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-form-section .container {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  header {
    height: auto;
    padding: 1rem 0;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform var(--transition-medium);
    z-index: 999;
  }
  
  nav.show {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .post-header h1 {
    font-size: 2.2rem;
  }
  
  .testimonial-slider {
    flex-direction: column;
  }
  
  .testimonial {
    flex: 0 0 100%;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-mission .mission-statement p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .feature-grid, 
  .post-grid, 
  .team-grid, 
  .values-grid, 
  .achievements-grid,
  .partners-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 2rem;
  }
  
  .prev-post, .next-post {
    flex: 0 0 100%;
    text-align: center;
  }
  
  .post-navigation span {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form input, 
  .newsletter-form button {
    border-radius: var(--border-radius-md);
    width: 100%;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}
