/* Base styles and variables */
:root {
  --primary-color: #e24e42;
  --secondary-color: #1e3d59;
  --tertiary-color: #f5b349;
  --light-color: #f5f5f5;
  --dark-color: #333333;
  --gray-color: #777777;
  --light-gray: #e0e0e0;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Merriweather', serif;
  --container-width: 1200px;
  --border-radius: 4px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Dark theme variables */
.dark-theme {
  --primary-color: #ff7e6b;
  --secondary-color: #4a88c7;
  --tertiary-color: #ffcc5c;
  --light-color: #242424;
  --dark-color: #f0f0f0;
  --gray-color: #b0b0b0;
  --light-gray: #3a3a3a;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--secondary-color);
  transition: var(--transition);
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.4rem;
  border: none;
  outline: none;
}

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

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

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

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

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more:after {
  content: "→";
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover:after {
  margin-left: 1rem;
}

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

.dark-theme header {
  background-color: var(--light-color);
}

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

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

.logo img {
  height: 5rem;
  width: auto;
}

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

.main-menu li {
  margin-left: 2.5rem;
}

.main-menu li a {
  color: var(--dark-color);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

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

.main-menu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-menu li a:hover:after, .main-menu li a.active:after {
  width: 100%;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.theme-toggle:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 8rem 0;
  background-color: #f9f9f9;
  transition: var(--transition);
}

.dark-theme .hero {
  background-color: #2a2a2a;
}

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

.hero-content {
  flex: 1;
  padding-right: 5rem;
}

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

.hero h1 {
  font-size: 4.2rem;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Features Section */
.features {
  padding: 8rem 0;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

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

.dark-theme .feature-card {
  background-color: var(--light-color);
}

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

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

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

/* Stats Section */
.stats {
  padding: 8rem 0;
  background-color: var(--secondary-color);
  color: white;
}

.stats h2 {
  text-align: center;
  margin-bottom: 5rem;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.stat-card {
  text-align: center;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
  font-size: 4.2rem;
  color: var(--tertiary-color);
  margin-bottom: 1rem;
}

.stat-card p {
  color: white;
  font-weight: 500;
  margin-bottom: 0;
}

/* Recent Posts Section */
.recent-posts {
  padding: 8rem 0;
}

.recent-posts h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.dark-theme .post-card {
  background-color: var(--light-color);
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-image {
  height: 20rem;
  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: 2rem;
}

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

.see-more {
  text-align: center;
}

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

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

.cta h2 {
  color: white;
  margin-bottom: 2rem;
}

.cta p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 6rem 0 2rem;
}

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

.footer-logo img {
  height: 5rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.registration {
  font-size: 1.2rem;
  opacity: 0.7;
}

.footer-links h3, .footer-contact h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-contact svg {
  margin-right: 1rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
  min-width: 30rem;
}

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

.cookie-content a {
  color: var(--tertiary-color);
}

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

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

.page-header p {
  font-size: 1.8rem;
  opacity: 0.8;
  max-width: 60rem;
  margin: 0 auto;
}

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

.blog-filters {
  margin-bottom: 4rem;
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.filter-btn {
  background-color: var(--light-gray);
  color: var(--dark-color);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

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

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

.dark-theme .blog-post {
  background-color: var(--light-color);
}

.blog-post:hover {
  transform: translateY(-5px);
}

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

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

.post-date {
  display: block;
  color: var(--gray-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.newsletter {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.dark-theme .newsletter {
  background-color: #2a2a2a;
}

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

.newsletter-form {
  display: flex;
  margin-top: 3rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

.dark-theme .newsletter-form input {
  background-color: var(--light-color);
  color: var(--dark-color);
  border-color: var(--gray-color);
}

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

/* Blog Post Styles */
.post-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.post-header h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
}

.post-content {
  padding: 6rem 0;
}

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

.post-body {
  max-width: 80rem;
  margin: 0 auto;
}

.post-body h2 {
  margin-top: 4rem;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 1rem;
}

.post-highlight {
  background-color: #f9f9f9;
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
  margin: 3rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.dark-theme .post-highlight {
  background-color: #2a2a2a;
}

.post-quote {
  font-style: italic;
  padding: 2rem;
  border-left: 4px solid var(--tertiary-color);
  margin: 3rem 0;
  background-color: rgba(245, 179, 73, 0.1);
}

.dark-theme .post-quote {
  background-color: rgba(245, 179, 73, 0.05);
}

.post-quote cite {
  display: block;
  text-align: right;
  margin-top: 1rem;
  font-weight: 600;
}

.post-cta {
  background-color: var(--light-gray);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin: 4rem 0;
  text-align: center;
}

.dark-theme .post-cta {
  background-color: #2a2a2a;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

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

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

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

.related-posts {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.dark-theme .related-posts {
  background-color: #2a2a2a;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

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

.dark-theme .related-post {
  background-color: var(--light-color);
}

.related-post:hover {
  transform: translateY(-5px);
}

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

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

.related-post .read-more {
  padding: 0 1.5rem 1.5rem;
  display: block;
}

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

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

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

.about-values {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.dark-theme .about-values {
  background-color: #2a2a2a;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

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

.dark-theme .value-card {
  background-color: var(--light-color);
}

.value-card:hover {
  transform: translateY(-5px);
}

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

.team-section {
  padding: 6rem 0;
}

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

.team-intro {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto 4rem;
}

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

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

.dark-theme .team-member {
  background-color: var(--light-color);
}

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

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

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--light-gray);
  color: var(--dark-color);
  transition: var(--transition);
}

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

.achievements {
  padding: 6rem 0;
  background-color: var(--secondary-color);
  color: white;
}

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

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.achievement-card {
  text-align: center;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.achievement-number {
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--tertiary-color);
  margin-bottom: 1rem;
}

.clients {
  padding: 6rem 0;
}

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

.clients-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.client-logo {
  width: 15rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

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

.client-logo img {
  max-width: 100%;
  max-height: 100%;
}

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

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

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-icon {
  margin-right: 1.5rem;
  color: var(--primary-color);
}

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

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

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

.contact-form {
  margin-top: 3rem;
}

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

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

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

.dark-theme .form-group input,
.dark-theme .form-group select,
.dark-theme .form-group textarea {
  background-color: var(--light-color);
  color: var(--dark-color);
  border-color: var(--gray-color);
}

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

.checkbox-group input {
  width: auto;
  margin-right: 1rem;
}

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

.map-section {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.dark-theme .map-section {
  background-color: #2a2a2a;
}

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

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

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

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

.faq-container {
  max-width: 80rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 2rem;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.dark-theme .faq-question {
  background-color: var(--light-color);
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.dark-theme .faq-question:hover {
  background-color: #3a3a3a;
}

.faq-question h3 {
  margin-bottom: 0;
}

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

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

.faq-item.active .faq-answer {
  padding: 0 2rem 2rem;
  max-height: 50rem;
}

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

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

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 4rem;
  border-radius: var(--border-radius);
  max-width: 50rem;
  text-align: center;
  position: relative;
}

.dark-theme .modal-content {
  background-color: var(--light-color);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gray-color);
  cursor: pointer;
}

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

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

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

/* Finance Table in Blog Posts */
.finance-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

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

.finance-table th {
  background-color: var(--secondary-color);
  color: white;
}

.finance-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.dark-theme .finance-table tr:nth-child(even) {
  background-color: #2a2a2a;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
  
  .hero-content {
    padding-right: 3rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 58%;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 2rem;
  }
  
  .main-menu {
    margin-bottom: 1.5rem;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post .post-image {
    height: 20rem;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  .main-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main-menu li {
    margin: 0 1rem 1rem;
  }
  
  .features-grid,
  .stats-grid,
  .posts-grid,
  .values-grid,
  .team-grid,
  .achievements-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .post-share {
    justify-content: center;
  }
}
