/* General Reset and Base Styles */
:root {
  --primary-color: #0d6efd;
  --secondary-color: #20c997;
  --primary-dark: #0a58ca;
  --secondary-dark: #13795b;
  --primary-light: #e6f2ff;
  --secondary-light: #e3f8f4;
  --text-color: #333;
  --light-text: #666;
  --lighter-text: #888;
  --white: #fff;
  --black: #000;
  --light-gray: #f8f9fa;
  --medium-gray: #dee2e6;
  --dark-gray: #6c757d;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

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

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  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 {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

.center {
  text-align: center;
}

.translation {
  display: block;
  font-size: 0.7em;
  color: var(--dark-gray);
  font-style: italic;
  margin-top: 0.25rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

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

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

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Header and Navigation */
header {
  padding: 1.25rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  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(--text-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.25rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

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

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  margin-bottom: 4rem;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

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

.hero-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

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

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

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

.feature-card .icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  height: 60px;
  width: 60px;
}

.feature-card .icon svg {
  height: 100%;
  width: 100%;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

/* Blog Preview Section */
.blog-preview {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

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

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

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

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.post-content p {
  margin-bottom: 1.25rem;
  color: var(--light-text);
}

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

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

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

.facts h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

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

.fact-card {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.fact-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -20px;
  right: 10px;
  line-height: 1;
  z-index: 0;
}

.fact-card p {
  position: relative;
  z-index: 1;
  font-weight: 500;
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  margin-top: 4rem;
}

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

.cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.cta .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
}

/* Footer */
footer {
  background-color: #1c2e4a;
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

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

.footer-column p {
  margin-bottom: 1.5rem;
  color: #b8c2cc;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.75rem;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #b8c2cc;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
}

address {
  font-style: normal;
  color: #b8c2cc;
}

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

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: 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(--primary-color);
  transform: translateY(-3px);
}

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b8c2cc;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
}

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

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

/* Page Header */
.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  margin-bottom: 3rem;
  text-align: center;
}

.page-header h1 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--text-color);
}

/* Services Page Styles */
.services-overview {
  padding: 3rem 0;
}

.service-intro {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.service-intro-content {
  flex: 1;
}

.service-intro-content h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.service-intro-content p {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.service-intro-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-categories {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.service-categories h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

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

.service-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  height: 50px;
  width: 50px;
}

.service-icon svg {
  height: 100%;
  width: 100%;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.service-features {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
}

.service-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.pricing {
  padding: 4rem 0;
  background-color: var(--white);
}

.pricing h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

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

.pricing-card {
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--medium-gray);
}

.pricing-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.1);
  z-index: 1;
}

.featured-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
}

.pricing-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--light-text);
}

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--light-text);
  font-size: 0.95rem;
}

.pricing-note a {
  font-weight: 600;
}

.testimonials {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.testimonial {
  flex: 0 0 calc(50% - 1rem);
  scroll-snap-align: start;
}

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

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  transform: rotate(45deg);
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.05);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  padding-left: 1.5rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid var(--white);
}

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

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

/* Blog Page Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

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

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

.blog-image {
  height: 240px;
}

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

.blog-content {
  padding: 2rem;
}

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

.meta {
  font-size: 0.875rem;
  color: var(--light-text);
  margin-bottom: 1.25rem;
  display: block;
}

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

.blog-facts {
  margin-top: 4rem;
}

.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  margin-top: 4rem;
}

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

.newsletter h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.newsletter p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: var(--font-family);
  font-size: 1rem;
}

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

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

.post-header {
  margin-bottom: 2.5rem;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--light-text);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

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

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

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

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

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

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

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

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

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

.post-content blockquote cite {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--light-text);
}

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

.post-tags span {
  font-weight: 600;
  color: var(--text-color);
}

.post-tags a {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.875rem;
  transition: var(--transition);
}

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

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

.post-nav-link {
  max-width: 45%;
}

.post-nav-link span {
  display: block;
  font-size: 0.875rem;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.post-nav-link a {
  font-weight: 600;
  color: var(--primary-dark);
}

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

.post-nav-prev {
  text-align: left;
}

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

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

.related-posts h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

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

.related-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

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

.related-post h3 {
  padding: 1.25rem 1.25rem 0;
  font-size: 1.25rem;
}

.related-post p {
  padding: 0.5rem 1.25rem 1.25rem;
  color: var(--light-text);
}

/* About Page Styles */
.about-intro {
  padding: 3rem 0 5rem;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

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

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

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

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

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

.mission-card, .vision-card, .values-card {
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.mission-card h2, .vision-card h2, .values-card h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.values-card ul {
  padding-left: 1.25rem;
  list-style-type: disc;
}

.values-card li {
  margin-bottom: 0.75rem;
}

.values-card strong {
  color: var(--primary-dark);
}

.team {
  padding: 5rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}

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

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

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--primary-light);
}

.team-member h3 {
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

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

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

.achievements h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

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

.achievement-card {
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.achievement-icon svg {
  width: 50px;
  height: 50px;
}

.achievement-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

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

.partners {
  padding: 5rem 0;
}

.partners h2 {
  text-align: center;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}

.partners p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.partner-logos img {
  height: 80px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

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

/* Contact Page Styles */
.contact-section {
  padding: 3rem 0 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
}

.contact-info h2, .contact-form-container h2 {
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.contact-info p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.contact-details {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  color: var(--primary-color);
}

.contact-icon svg {
  width: 30px;
  height: 30px;
}

.contact-text h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.contact-text p {
  margin-bottom: 0.5rem;
}

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

.contact-text .social-icons {
  margin-top: 0.75rem;
}

.contact-text .social-icons a {
  width: 35px;
  height: 35px;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-group textarea {
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

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

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

.map-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--primary-dark);
}

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

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

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 90%;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.75rem;
  color: var(--light-text);
  cursor: pointer;
  line-height: 1;
}

.modal h2 {
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.modal p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.modal-btn {
  min-width: 150px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero .container, .about-content, .service-intro {
    flex-direction: column;
  }
  
  .hero-content, .about-text, .service-intro-content {
    order: 2;
    text-align: center;
  }
  
  .hero-image, .about-image, .service-intro-image {
    order: 1;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .post-cards {
    grid-template-columns: 1fr;
  }
  
  .testimonial {
    flex: 0 0 100%;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form input, .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .post-nav-link {
    max-width: 100%;
  }
  
  .post-nav-next {
    text-align: left;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    align-items: center;
  }
}
