/* Reset & Base Styles */
:root {
  --primary-color: #4a6fa5;
  --primary-dark: #3a5a8c;
  --primary-light: #6a8bc1;
  --secondary-color: #e67e22;
  --secondary-dark: #d35400;
  --accent-color: #2ecc71;
  --text-color: #333333;
  --text-light: #666666;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #888888;
  --white: #ffffff;
  --black: #222222;
  --success: #27ae60;
  --error: #e74c3c;
  --warning: #f39c12;
  --border-radius: 6px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --font-secondary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

* {
  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.7;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

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

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 2rem;
}

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

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: var(--font-primary);
}

input, 
button, 
textarea, 
select {
  font: inherit;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1.4rem;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.btn-tertiary {
  background-color: var(--white);
  color: var(--text-color);
  border: 1px solid var(--medium-gray);
}

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

.center-btn {
  text-align: center;
  margin: 4rem 0;
}

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

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

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

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

nav a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--primary-color);
  background-color: rgba(74, 111, 165, 0.1);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.5rem;
  cursor: pointer;
}

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

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

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

.page-header p {
  font-size: 1.8rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  padding: 10rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  background-color: rgba(74, 111, 165, 0.1);
  color: var(--primary-color);
}

.feature-item h3 {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.feature-item p {
  color: var(--text-light);
}

/* Testimonial Section */
.testimonial {
  padding: 8rem 0;
  background-color: var(--light-gray);
}

.expert-interview {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.expert-photo {
  flex: 0 0 300px;
}

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

.expert-content {
  padding: 4rem;
}

.expert-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  font-style: italic;
}

.interview-text p {
  margin-bottom: 2rem;
}

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

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

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

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

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

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.post-content {
  padding: 2.5rem;
}

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

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

.post-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.views {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Call to Action */
.cta {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 3.6rem;
}

.cta p {
  font-size: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact a:hover {
  color: var(--white);
}

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

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

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

.footer-bottom p {
  margin-bottom: 0;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
  color: var(--white);
}

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

.cookie-content {
  max-width: 1000px;
  text-align: center;
}

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

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

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

.cookie-more-info {
  font-size: 1.4rem;
  margin-bottom: 0;
}

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

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

.search-bar {
  display: flex;
  max-width: 500px;
  margin-bottom: 2rem;
}

.search-bar input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--medium-gray);
  border-right: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  outline: none;
}

.search-bar button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 1.5rem;
  cursor: pointer;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.categories button {
  padding: 0.8rem 1.5rem;
  background-color: var(--light-gray);
  border: none;
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

.featured-post-content {
  padding: 4rem;
}

.post-category {
  display: inline-block;
  background-color: rgba(74, 111, 165, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.featured-post-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.post-excerpt {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.reading-time {
  margin-right: 2rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 6rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius);
  background-color: var(--white);
  color: var(--text-color);
  font-weight: 600;
  transition: var(--transition);
}

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

.pagination a:hover:not(.active) {
  background-color: var(--light-gray);
  text-decoration: none;
}

.pagination a.next {
  width: auto;
  padding: 0 1.5rem;
}

.pagination a.next svg {
  margin-left: 0.5rem;
}

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

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

.newsletter h2 {
  margin-bottom: 1.5rem;
}

.newsletter p {
  margin-bottom: 3rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  outline: none;
}

.privacy-note {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-top: 2rem;
}

/* Services Page */
.services-intro {
  padding: 6rem 0;
}

.services-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.services-intro-text h2 {
  margin-bottom: 2rem;
}

.services-intro-text p {
  margin-bottom: 2rem;
}

.services-intro-text .btn {
  margin-top: 1rem;
}

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

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

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

.service-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.tab-btn {
  padding: 1.2rem 2.4rem;
  background-color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.tab-pane {
  display: none;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.tab-pane.active {
  display: block;
}

.tab-pane-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.tab-pane-info {
  padding: 4rem;
}

.tab-pane-info h3 {
  margin-bottom: 2rem;
}

.tab-pane-info h4 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.tab-pane-info ul {
  margin-bottom: 3rem;
}

.tab-pane-info li {
  margin-bottom: 2rem;
}

.tab-pane-info li:last-child {
  margin-bottom: 0;
}

.tab-pane-info li strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.pricing-info {
  background-color: rgba(74, 111, 165, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

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

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

.process {
  padding: 8rem 0;
}

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

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

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 8rem;
  left: 3rem;
  width: 3px;
  height: calc(100% - 5rem);
  background-color: var(--medium-gray);
}

.process-number {
  flex: 0 0 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 2.4rem;
  border-radius: 50%;
  z-index: 1;
}

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

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

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  background-color: var(--white);
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 0 1.5rem;
}

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

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

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

.author-info h4 {
  margin-bottom: 0.5rem;
}

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

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-color);
}

.prev, .next {
  background-color: var(--white);
  color: var(--text-color);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: var(--transition);
}

.prev:hover, .next:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.faq {
  padding: 8rem 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 2rem 2rem;
  display: none;
}

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

.faq-item.active .faq-answer {
  display: block;
}

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

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

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

.about-text h2 {
  margin-bottom: 2rem;
}

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

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

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

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

.team {
  padding: 8rem 0;
}

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

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

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

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card h3 {
  margin: 2rem 2rem 0.5rem;
}

.team-card p {
  margin: 0 2rem 2rem;
}

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

.team-social {
  display: flex;
  gap: 1rem;
  margin: 0 2rem 2rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: rgba(74, 111, 165, 0.1);
  color: var(--primary-color);
  transition: var(--transition);
}

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

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

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

.credentials-text p {
  margin-bottom: 2rem;
}

.credentials-list {
  margin-top: 3rem;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.credentials-list svg {
  flex: 0 0 auto;
  color: var(--success);
}

.credentials-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 3rem;
}

.credentials-logos img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.approach {
  padding: 8rem 0;
}

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

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

.approach-text p {
  margin-bottom: 3rem;
}

.approach-text h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

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

.contact-info h2,
.contact-form-container h2 {
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-icon {
  flex: 0 0 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74, 111, 165, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
}

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

.info-text p,
.info-text a {
  margin-bottom: 0;
  color: var(--text-light);
}

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

.social-contact h3 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  outline: none;
  transition: var(--transition);
}

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

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-size: 1.4rem;
}

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

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

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

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

.close-popup {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--dark-gray);
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--success);
}

.popup h2 {
  margin-bottom: 1.5rem;
}

.popup p {
  margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  html {
    font-size: 56.25%; /* 9px */
  }
  
  .expert-interview,
  .featured-post,
  .tab-pane-content,
  .services-intro-content,
  .about-content,
  .credentials-content,
  .approach-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .expert-photo {
    flex: 0 0 auto;
  }
  
  .tab-pane-image {
    height: 300px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    margin-bottom: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: none;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  nav a {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 3.6rem;
  }
  
  .hero p {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .cookie-consent {
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

/* Animation & Transitions */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fadeIn {
  animation: fadeIn 0.5s ease-in-out;
}

/* Additional Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}
