/* BalanceHubb CSS - Main Stylesheet */

/* ====== Base & Reset ====== */
:root {
  --primary: #00b3b3; /* Turquoise */
  --primary-dark: #008080;
  --primary-light: #66e0e0;
  --secondary: #ff6b35; /* Orange */
  --secondary-dark: #e54e1b;
  --secondary-light: #ff8d66;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --white: #ffffff;
  --black: #000000;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --border-radius: 6px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --content-width: 1200px;
}

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

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

/* Custom list styles */
.custom-list {
  list-style-type: none;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

.custom-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--primary);
  border-radius: 50%;
}

/* ====== Layout & Container ====== */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 4rem 0;
}

/* ====== Buttons ====== */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

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

.tertiary-btn {
  background-color: var(--gray-200);
  color: var(--gray-800);
}

.tertiary-btn:hover {
  background-color: var(--gray-300);
}

/* ====== Header & Navigation ====== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

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

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--gray-900);
  font-weight: 700;
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--gray-800);
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

/* ====== Hero Section ====== */
.hero {
  padding: 5rem 0;
  background-color: var(--gray-100);
  overflow: hidden;
}

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

.hero-content {
  flex: 1;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

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

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* ====== Tariffs Section ====== */
.tariffs {
  padding: 5rem 0;
  background-color: var(--white);
}

.tariffs h2,
.section-description {
  text-align: center;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray-600);
  font-size: 1.1rem;
}

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

.tariff-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

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

.tariff-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.provider-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.tariff-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.tariff-features {
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.feature svg {
  color: var(--primary);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.tariff-price {
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
}

.period {
  font-size: 1rem;
  color: var(--gray-600);
}

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

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

.facts h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

/* ====== Reviews Section ====== */
.reviews {
  padding: 5rem 0;
  background-color: var(--white);
}

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

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

.review-slider::-webkit-scrollbar {
  height: 6px;
}

.review-slider::-webkit-scrollbar-track {
  background: var(--gray-200);
  border-radius: 10px;
}

.review-slider::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}

.review-card {
  flex: 0 0 350px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  scroll-snap-align: start;
  border: 1px solid var(--gray-200);
}

.review-stars {
  display: flex;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

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

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.reviewer h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

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

/* ====== FAQ Section ====== */
.faq {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

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

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

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

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  background-color: var(--white);
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.accordion-button:hover {
  background-color: var(--gray-100);
}

.accordion-button svg {
  transform: rotate(0);
  transition: transform 0.3s ease;
}

.accordion-button.active svg {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

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

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

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

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

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

.cta .primary-btn:hover {
  background-color: var(--gray-100);
}

/* ====== Fixed Contact Button ====== */
.fixed-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.contact-button:hover {
  background-color: var(--secondary-dark);
  transform: scale(1.1);
  color: var(--white);
}

/* ====== Footer ====== */
footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
}

.footer-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}

.footer-column p {
  color: var(--gray-400);
}

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

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

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

.footer-column ul li a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary-light);
}

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

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

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

address {
  font-style: normal;
  color: var(--gray-400);
}

address p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

address svg {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

address a {
  color: var(--gray-400);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--gray-500);
  font-size: 0.9rem;
}

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

/* ====== 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: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-content p {
  margin-bottom: 0;
  flex: 1 1 300px;
}

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

.cookie-content a {
  margin-left: auto;
  font-size: 0.9rem;
}

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

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

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

/* ====== Blog Page ====== */
.blog-featured {
  padding: 4rem 0;
  background-color: var(--white);
}

.featured-post {
  display: flex;
  gap: 3rem;
  align-items: center;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.featured-image {
  flex: 0 0 50%;
}

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

.featured-content {
  flex: 1;
  padding: 2rem 2rem 2rem 0;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.post-category {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.post-date {
  color: var(--gray-600);
  font-size: 0.9rem;
}

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

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

.blog-posts {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

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

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

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

.blog-card-image {
  position: relative;
  height: 200px;
  display: block;
}

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

.blog-card-image .post-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-card-content h3 a {
  color: var(--gray-900);
}

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

.blog-card-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.read-more svg {
  transition: var(--transition);
}

.read-more:hover svg {
  transform: translateX(3px);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.pagination-link,
.pagination-current,
.pagination-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 500;
}

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

.pagination-link {
  background-color: var(--gray-200);
  color: var(--gray-800);
}

.pagination-link:hover {
  background-color: var(--gray-300);
}

.pagination-next {
  background-color: var(--gray-200);
  color: var(--gray-800);
  width: auto;
  padding: 0 1rem;
  border-radius: 20px;
  gap: 0.5rem;
}

.pagination-next:hover {
  background-color: var(--gray-300);
}

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

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

.newsletter-content h2 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.newsletter-content p {
  margin-bottom: 2rem;
  color: var(--gray-800);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.newsletter-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-700);
}

/* ====== Blog Post Page ====== */
.blog-post {
  padding: 4rem 0;
}

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

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

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

.author-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.reading-time {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

.image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

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

.post-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  background-color: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.post-toc h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.post-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-toc li {
  margin-bottom: 0.5rem;
}

.post-toc a {
  color: var(--gray-700);
  font-size: 0.9rem;
}

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

.post-content section {
  padding: 0;
  margin-bottom: 3rem;
}

.post-content h2 {
  margin: 2rem 0 1.5rem;
}

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

.info-box {
  background-color: var(--gray-100);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.info-box h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.info-box p {
  margin-bottom: 0;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-300);
}

th {
  background-color: var(--gray-100);
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: var(--gray-50);
}

.table-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.checklist {
  background-color: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.checklist h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.checklist h3:first-child {
  margin-top: 0;
}

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

.tags-title {
  color: var(--gray-700);
  font-weight: 500;
}

.tag {
  background-color: var(--gray-200);
  color: var(--gray-700);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  padding: 2rem 0;
}

.prev-post,
.next-post {
  display: flex;
}

.prev-post a,
.next-post a {
  color: var(--gray-800);
}

.prev-post a:hover,
.next-post a:hover {
  color: var(--primary);
}

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

.next-post a {
  text-align: right;
  margin-left: auto;
}

.prev-post span,
.next-post span {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

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

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

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

.related-post {
  display: block;
  color: var(--gray-800);
}

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

.related-post img {
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  height: 150px;
  object-fit: cover;
  width: 100%;
}

.related-post h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* ====== About Page ====== */
.about-intro {
  padding: 4rem 0;
}

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

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

.about-values {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

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

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

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

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

.value-icon svg {
  color: var(--primary-dark);
}

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

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

.team {
  padding: 5rem 0;
}

.team h2,
.team .section-description {
  text-align: center;
}

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

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

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-light);
}

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

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

.team-member p:last-of-type {
  color: var(--gray-700);
  font-size: 0.95rem;
}

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

.about-stats {
  padding: 4rem 0;
  background-color: var(--primary);
}

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

.stat-card {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.testimonials {
  padding: 5rem 0;
  background-color: var(--white);
}

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

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

.testimonial-card {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content svg {
  color: var(--primary);
  margin-bottom: 1rem;
  opacity: 0.3;
}

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

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

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

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

.testimonial-author p {
  margin-bottom: 0;
  color: var(--gray-600);
}

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

.partners h2,
.partners .section-description {
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.partners-grid img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partners-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ====== Contact Page ====== */
.contact {
  padding: 4rem 0;
}

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

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

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

.contact-methods {
  display: grid;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-light);
  flex-shrink: 0;
}

.method-icon svg {
  color: var(--primary-dark);
}

.method-details h3 {
  margin-bottom: 0.5rem;
}

.method-details p {
  margin-bottom: 0.25rem;
}

.response-time {
  font-size: 0.9rem;
  color: var(--gray-600);
}

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

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

.contact-form {
  display: grid;
  gap: 1.5rem;
}

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

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

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

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

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

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

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

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

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

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

/* Thank You Modal */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

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

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

.modal-icon {
  margin-bottom: 1.5rem;
  color: var(--success);
}

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 2rem;
}

/* ====== Responsive Styles ====== */
@media (max-width: 1200px) {
  .post-content {
    grid-template-columns: 1fr;
  }
  
  .post-toc {
    position: static;
    margin-bottom: 2rem;
  }
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .featured-post {
    flex-direction: column;
  }
  
  .featured-content {
    padding: 2rem;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  .tariff-grid,
  .blog-grid,
  .values-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray-800);
}

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

.mobile-menu-close {
  cursor: pointer;
  font-size: 1.5rem;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}
