/* Base Styles */
:root {
  --primary-color: #4361ee;
  --primary-dark: #3a56d4;
  --secondary-color: #ff6b6b;
  --accent-color: #4cc9f0;
  --text-color: #333;
  --text-light: #777;
  --text-white: #fff;
  --bg-color: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #2b2d42;
  --border-color: #e0e0e0;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --radius: 8px;
  --container-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-light);
}

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

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

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

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

.btn-secondary:hover {
  background-color: #ff5252;
  color: var(--text-white);
}

.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(--text-white);
}

/* Header */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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(--text-color);
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

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

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

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

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
}

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

/* Countdown Section */
.countdown {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-white);
  text-align: center;
}

.countdown h2 {
  color: var(--text-white);
  margin-bottom: 30px;
}

#countdown-timer {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-item span:first-child {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.service-card {
  background-color: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

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

.service-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  min-width: 350px;
  background-color: var(--bg-color);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 20px;
}

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

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

/* Recent Posts Section */
.recent-posts {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.recent-posts h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

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

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

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

.post-content {
  padding: 25px;
}

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

.post-content h3 {
  margin-bottom: 15px;
}

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

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

.read-more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
}

.center {
  text-align: center;
}

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

.page-header h1 {
  color: var(--text-white);
  font-size: 2.5rem;
}

.blog-content {
  padding: 80px 0;
}

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

.blog-card {
  display: flex;
  gap: 30px;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.blog-image {
  flex: 0 0 300px;
}

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

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

.blog-category {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 10px;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog-text h2 {
  margin: 15px 0;
}

.blog-text h2 a {
  color: var(--text-color);
}

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

/* Newsletter Section */
.newsletter {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h2 {
  color: var(--text-white);
}

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

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

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

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

/* Services Page */
.services-intro {
  padding: 80px 0;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.intro-text {
  flex: 1;
}

.intro-image {
  flex: 1;
}

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

.services-detailed {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.service-detailed-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  background-color: var(--bg-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-detailed-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 0 0 40%;
}

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

.service-content {
  flex: 1;
  padding: 40px;
}

.service-content h3 {
  margin-bottom: 20px;
}

.service-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.languages {
  padding: 80px 0;
}

.languages h2 {
  text-align: center;
  margin-bottom: 20px;
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.language-column ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-white);
}

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

.cta-content h2 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
}

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

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

/* About Page */
.about-intro {
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 0 0 40%;
}

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

.about-text {
  flex: 1;
}

.our-values {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.our-values h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

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

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

.value-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.our-team {
  padding: 80px 0;
}

.our-team h2 {
  text-align: center;
  margin-bottom: 20px;
}

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

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

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

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

.team-member h3 {
  margin: 20px 0 5px;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 10px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 20px;
}

.team-social a {
  color: var(--text-light);
  transition: var(--transition);
}

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

.certifications {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.certifications h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.certification-item {
  background-color: var(--bg-color);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.certification-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Contact Page */
.contact-info-section {
  padding: 80px 0;
}

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

.contact-card {
  background-color: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.contact-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-form-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-color);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.form-intro {
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
}

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

.checkbox-container input {
  width: auto;
  margin-top: 5px;
}

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

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.faq-item {
  background-color: var(--bg-color);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Blog Post Page */
.blog-post {
  padding: 80px 0;
}

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

.post-meta {
  margin-bottom: 20px;
}

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

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

.post-featured-image img {
  width: 100%;
}

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

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

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

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

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.post-tags a {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-color);
}

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

.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-share a {
  color: var(--text-light);
  transition: var(--transition);
}

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.nav-prev,
.nav-next {
  max-width: 48%;
}

.nav-prev a,
.nav-next a {
  display: block;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

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

.nav-prev a span,
.nav-next a span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.nav-prev a h4,
.nav-next a h4 {
  font-size: 1.1rem;
  margin: 0;
}

.related-posts {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 80px 0 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.footer-logo span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
}

.footer-column h3 {
  color: var(--text-white);
  margin-bottom: 25px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.quick-links li {
  margin-bottom: 10px;
}

.quick-links a {
  color: var(--text-light);
}

.quick-links a:hover {
  color: var(--text-white);
}

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

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

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

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

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--text-white);
}

.cookie-content h3 {
  color: var(--text-white);
  margin-bottom: 10px;
}

.cookie-content p {
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.cookie-content a {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.cookie-content a:hover {
  text-decoration: underline;
}

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

.modal-content {
  background-color: var(--bg-color);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header svg {
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .service-detailed-item,
  .service-detailed-item.reverse {
    flex-direction: column;
  }
  
  .service-image {
    flex: 0 0 300px;
  }
  
  .languages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    transform: translateX(-100%);
    transition: var(--transition);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
  }
  
  nav.active {
    transform: translateX(0);
    opacity: 1;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .mobile-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero .container,
  .intro-content,
  .about-content {
    flex-direction: column;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 0;
    margin-bottom: 30px;
  }
  
  .blog-card {
    flex-direction: column;
  }
  
  .blog-image {
    flex: 0 0 200px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .countdown-item span:first-child {
    font-size: 2rem;
  }
  
  .testimonial {
    min-width: 100%;
  }
  
  .legal-links {
    flex-wrap: wrap;
  }
}
