/* Base Styles */
:root {
  --primary-color: #2a71d0;
  --secondary-color: #5d6d7e;
  --accent-color: #3498db;
  --background-color: #f9f9f9;
  --text-color: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --border-color: #e1e1e1;
  --success-color: #2ecc71;
  --warning-color: #e67e22;
  --error-color: #e74c3c;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --container-width: 1200px;
  --gradient-primary: linear-gradient(135deg, #2a71d0 0%, #3498db 100%);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

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

a:hover {
  color: var(--accent-color);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

.btn-cookie {
  padding: 8px 16px;
  margin: 0 5px;
  font-size: 14px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

#cookie-accept {
  background-color: var(--success-color);
  color: var(--white);
  border: none;
}

#cookie-customize {
  background-color: var(--white);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

#cookie-reject {
  background-color: var(--white);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 15px 20px;
}

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

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

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

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

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

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Featured Posts Section */
.featured-posts {
  padding: 80px 0;
  background-color: var(--white);
}

.featured-posts h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}

.featured-posts h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

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

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

.post-content {
  padding: 20px;
}

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

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

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

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

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

.post-excerpt {
  margin-bottom: 15px;
  color: var(--text-light);
}

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

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

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

/* Editor's Note Section */
.editor-note {
  padding: 80px 0;
  background-color: var(--background-color);
}

.editor-note h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}

.editor-note h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.editor-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.editor-image {
  flex: 0 0 200px;
}

.editor-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--box-shadow);
}

.editor-text {
  flex: 1;
}

.editor-text p {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.editor-signature {
  font-weight: 600;
  color: var(--text-color);
  font-style: italic;
  margin-top: 20px;
}

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

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

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.newsletter p {
  margin-bottom: 30px;
  opacity: 0.9;
}

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

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

.newsletter button {
  padding: 0 25px;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter button:hover {
  background-color: var(--text-color);
}

/* Footer Styles */
footer {
  background-color: #263238;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.footer-column p {
  margin-bottom: 10px;
  opacity: 0.8;
}

.footer-column address {
  font-style: normal;
  opacity: 0.8;
}

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

.footer-column ul li a {
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--accent-color);
}

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

.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: var(--transition);
}

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

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
}

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

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

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

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: var(--container-width);
  margin: 60px auto;
  padding: 0 20px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post {
  display: flex;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-post .post-image {
  flex: 0 0 300px;
  height: 100%;
}

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

.blog-post .post-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.blog-post .post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background-color: var(--white);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}

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

.category-list li {
  margin-bottom: 10px;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
}

.category-list li a:hover {
  color: var(--primary-color);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--background-color);
  color: var(--text-light);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-form input {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 14px;
}

/* Blog Post Single Page */
.blog-post-single {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.post-header {
  margin-bottom: 30px;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.post-content {
  margin-bottom: 40px;
}

.post-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

.post-content h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.post-content ul, .post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.tags-title {
  margin-right: 10px;
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--background-color);
  color: var(--text-light);
  border-radius: 30px;
  font-size: 0.9rem;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
}

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

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

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

.social-share {
  display: flex;
  gap: 10px;
}

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

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

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text-color);
  transition: var(--transition);
}

.social-icon:hover svg {
  fill: var(--white);
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.nav-link {
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}

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

.nav-direction {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.nav-title {
  font-weight: 600;
}

.nav-link:hover .nav-title {
  color: var(--primary-color);
}

/* Contact Page Styles */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info h2, .contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 30px;
  color: var(--text-light);
}

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

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

.contact-icon {
  flex: 0 0 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(42, 113, 208, 0.1);
  border-radius: 50%;
  margin-right: 15px;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

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

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

.social-links {
  display: flex;
  gap: 15px;
}

.business-hours h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.business-hours p {
  margin-bottom: 5px;
}

.contact-form-container {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(42, 113, 208, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.checkbox-container label {
  font-size: 0.9rem;
}

.map-section {
  padding: 40px 0 80px;
}

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

.map-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--background-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: var(--box-shadow);
}

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

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

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

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

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--success-color);
}

.thank-you-container h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--success-color);
}

.thank-you-container p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.close-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--success-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.close-btn:hover {
  background-color: #27ae60;
}

/* About Us Page Styles */
.about-section {
  padding: 60px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  max-width: var(--container-width);
  margin: 0 auto 60px;
  padding: 0 20px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

.about-text h2:first-child {
  margin-top: 0;
}

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

.about-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-text ul li {
  margin-bottom: 10px;
  position: relative;
  list-style-type: disc;
}

.values-section {
  max-width: var(--container-width);
  margin: 0 auto 60px;
  padding: 0 20px;
}

.values-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  position: relative;
}

.values-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

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

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

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(42, 113, 208, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--primary-color);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-light);
}

.team-section {
  max-width: var(--container-width);
  margin: 0 auto 60px;
  padding: 0 20px;
}

.team-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  position: relative;
}

.team-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

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

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

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
  margin: 20px 0 5px;
  padding: 0 20px;
  font-size: 1.3rem;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 15px;
  color: var(--text-light);
}

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

.member-social {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

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

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

.member-social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-color);
  transition: var(--transition);
}

.member-social a:hover svg {
  fill: var(--white);
}

.careers-section {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.careers-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

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

.careers-section ul {
  display: inline-block;
  text-align: left;
  margin-bottom: 30px;
}

.careers-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.careers-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Terminology Page Styles */
.terminology-section {
  padding: 60px 0;
}

.terminology-intro {
  max-width: var(--container-width);
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
}

.terminology-intro p {
  margin-bottom: 30px;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.terminology-search {
  max-width: 600px;
  margin: 0 auto;
}

.terminology-search input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.terminology-search input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(42, 113, 208, 0.2);
}

.alphabet-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.alphabet-filter span {
  font-weight: 600;
}

.alphabet-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.alphabet-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--background-color);
  border-radius: 50%;
  font-weight: 600;
  transition: var(--transition);
}

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

.terminology-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.term-section {
  margin-bottom: 50px;
}

.term-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.term-item {
  margin-bottom: 30px;
}

.term-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.term-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .editor-content {
    flex-direction: column;
    text-align: center;
  }
  
  .editor-image {
    margin: 0 auto 30px;
  }
  
  .blog-container {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    position: static;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .post-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .blog-post {
    flex-direction: column;
  }
  
  .blog-post .post-image {
    flex: 0 0 200px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid, .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .next-post {
    text-align: left;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-wrap: wrap;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter button {
    border-radius: var(--border-radius);
    width: 100%;
    padding: 15px;
  }
  
  .post-header h1 {
    font-size: 1.8rem;
  }
  
  .alphabet-links {
    gap: 5px;
  }
  
  .alphabet-links a {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }
}
