/* 
  G4RSKINSC - Digital Avatar Creation Services
  Main Stylesheet
*/

/* Base Styles and Typography */
:root {
  --primary-color: #6c63ff;
  --primary-dark: #5a52d5;
  --secondary-color: #ff6b6b;
  --text-color: #333333;
  --text-light: #777777;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #2d2b55;
  --border-color: #e5e5e5;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-cookie {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

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

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

.logo img {
  height: 50px;
  width: auto;
}

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

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

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

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

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

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

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

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--bg-dark);
}

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

.hero-image {
  flex: 1;
  position: relative;
}

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

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

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

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

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

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

.feature-card .icon {
  width: 60px;
  height: 60px;
  background-color: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-card .icon svg {
  color: var(--primary-color);
}

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

/* Latest Posts Section */
.latest-posts {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

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

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

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

.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.05);
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.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: 0.75rem;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

/* Random Fact Section */
.random-fact {
  padding: 3rem 0;
  background-color: var(--bg-color);
}

.fact-card {
  background-color: rgba(108, 99, 255, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 2rem;
}

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

/* Terminology Section */
.terminology {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

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

.term-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

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

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: var(--bg-dark);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 5rem 0 2rem;
}

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

.footer-col h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.footer-col p, .footer-col ul {
  opacity: 0.8;
}

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

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

.footer-col ul li a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
}

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

.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%;
  transition: var(--transition);
}

.social-links a svg {
  color: white;
}

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

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

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
}

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

.footer-links a {
  color: white;
  opacity: 0.7;
  font-size: 0.9rem;
}

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

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

.cookie-content {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.cookie-learn-more {
  font-size: 0.9rem;
}

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

.page-header h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.about-content {
  flex: 1.5;
}

.about-image {
  flex: 1;
}

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

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

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

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

.team {
  padding: 5rem 0;
}

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

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

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

.team-card img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--text-light);
}

.team-card .social-links {
  justify-content: center;
  margin-top: 1rem;
}

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

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

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

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

.testimonial-author h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

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

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

.service-cards {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.service-card {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-card.reversed {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-height: 400px;
}

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

.service-content {
  flex: 1.5;
  padding: 3rem;
}

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

.service-content h4 {
  margin: 2rem 0 0.5rem;
}

.service-content ul {
  margin-bottom: 2rem;
}

.process {
  padding: 5rem 0;
}

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

.process-steps {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-steps:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  position: relative;
  text-align: center;
  z-index: 2;
  flex: 1;
  padding: 0 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: bold;
}

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

.pricing h2 {
  text-align: center;
  margin-bottom: 1rem;
}

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

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

.pricing-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.featured-tag {
  position: absolute;
  top: 1.5rem;
  right: -3rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-size: 0.9rem;
  font-weight: bold;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 1rem 0 2rem;
}

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

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

.faq {
  padding: 5rem 0;
}

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

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

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  text-align: left;
  background-color: var(--bg-color);
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-button[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-content.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* Blog Page */
.blog-posts {
  padding: 5rem 0;
}

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

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

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

.blog-image {
  height: 250px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

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

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

.blog-categories {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

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

.category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.category-tag {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.blog-subscribe {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.subscribe-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.subscribe-card h2 {
  margin-bottom: 1rem;
}

.subscribe-card p {
  margin-bottom: 2rem;
}

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

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

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

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

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.featured-image {
  margin-bottom: 2rem;
}

.featured-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

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

.post-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

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

.post-footer {
  max-width: 800px;
  margin: 3rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.tag-label, .share-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.tag {
  background-color: var(--bg-light);
  border-radius: 30px;
  padding: 0.25rem 1rem;
  font-size: 0.9rem;
}

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

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

.post-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light);
  margin-left: 0.5rem;
  transition: var(--transition);
}

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

.post-share a:hover svg {
  color: white;
}

.post-navigation {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
}

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

.nav-previous a, .nav-next a {
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}

.nav-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.nav-title {
  font-weight: 600;
}

.nav-previous a:hover, .nav-next a:hover {
  color: var(--primary-color);
}

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

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

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

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

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

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

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

.related-card:hover .related-image img {
  transform: scale(1.05);
}

.related-content {
  padding: 1.5rem;
}

.related-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

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

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

.related-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Contact Page */
.contact-info {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

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

.contact-card .icon {
  width: 60px;
  height: 60px;
  background-color: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

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

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

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

.contact-form-section {
  padding: 5rem 0;
}

.contact-flex {
  display: flex;
  gap: 3rem;
}

.contact-form-container {
  flex: 1.5;
}

.contact-map {
  flex: 1;
}

.contact-form-container h2, .contact-map h2 {
  margin-bottom: 1rem;
}

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

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

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

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

.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

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

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

.map-container {
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

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

.social-contact h3 {
  margin-bottom: 0.75rem;
}

.social-contact p {
  margin-bottom: 1rem;
}

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

.modal-content {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.checkmark {
  color: var(--success-color);
  margin: 0 auto 1.5rem;
  display: block;
}

.close-btn {
  margin-top: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .about-intro .container {
    flex-direction: column;
  }
  
  .about-content {
    order: 2;
  }
  
  .about-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .service-card, .service-card.reversed {
    flex-direction: column;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-steps:before {
    display: none;
  }
  
  .post-footer {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-flex {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 0.75rem 0.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav-previous, .nav-next {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
