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

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: var(--transition);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-button,
.cta-button-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  animation: fadeInUp 1.4s ease;
  border: 2px solid var(--accent-color);
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cta-button-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-button-secondary:hover {
  background: white;
  color: var(--primary-color);
}

.inspiration-block {
  background: var(--bg-light);
  padding: 60px 20px;
  text-align: center;
}

.inspiration-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.daily-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.daily-quote cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: 600;
  color: var(--secondary-color);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.services-section,
.process-section,
.testimonials-section,
.pricing-section,
.faq-section,
.blog-posts-section,
.team-section,
.values-section,
.certifications-section {
  padding: 80px 20px;
}

.services-grid,
.pricing-grid,
.blog-grid,
.team-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card,
.pricing-card,
.blog-card,
.team-member,
.value-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover,
.pricing-card:hover,
.blog-card:hover,
.team-member:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-icon,
.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3,
.value-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  margin-top: 20px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-light);
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 300px;
  gap: 30px;
  margin-bottom: 50px;
  align-items: center;
}

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

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.step-image-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #f39c12;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.pricing-card {
  text-align: center;
  position: relative;
}

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

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-amount {
  margin-bottom: 30px;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--secondary-color);
  display: block;
}

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

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.pricing-button:hover {
  background: var(--primary-color);
}

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

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.faq-toggle {
  font-size: 1.5rem;
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.site-footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 20px 20px;
}

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

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

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

.social-links a,
.social-links-large a {
  color: white;
  transition: var(--transition);
}

.social-links a:hover,
.social-links-large a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.8);
}

.footer-contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-registration {
  margin-top: 15px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 10000;
  padding: 20px;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text h3 {
  margin-bottom: 10px;
}

.cookie-link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-customize,
.btn-cookie-reject {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-cookie-accept {
  background: var(--success-color);
  color: white;
}

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

.btn-cookie-reject {
  background: var(--text-light);
  color: white;
}

.btn-cookie-accept:hover,
.btn-cookie-customize:hover,
.btn-cookie-reject:hover {
  opacity: 0.8;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  padding: 80px 20px 60px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-intro {
  padding: 80px 20px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro-content h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-intro-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-intro-image,
.framed-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.team-photo-frame {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.team-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--text-light);
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  gap: 10px;
}

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

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

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.cert-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.blog-image-frame {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

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

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.blog-category {
  color: var(--secondary-color);
  font-weight: 600;
}

.blog-date {
  color: var(--text-light);
}

.blog-title {
  margin-bottom: 15px;
}

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

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

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-color);
}

.newsletter-section {
  background: var(--bg-light);
  padding: 80px 20px;
}

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

.newsletter-content h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.newsletter-input {
  flex: 1;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-button {
  padding: 15px 30px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  flex-shrink: 0;
  color: var(--secondary-color);
}

.contact-text h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-form-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover {
  background: var(--primary-color);
}

.map-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: fadeInUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 20px;
}

.modal-button {
  padding: 12px 30px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--transition);
}

.modal-button:hover {
  background: var(--primary-color);
}

.post-container {
  background: white;
}

.post-header {
  background: var(--bg-light);
  padding: 60px 20px 40px;
}

.post-meta-top {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.post-category {
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}

.post-date,
.post-reading-time {
  color: var(--text-light);
}

.post-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.post-excerpt {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.post-featured-image {
  max-width: 1200px;
  margin: -40px auto 60px;
  padding: 0 20px;
}

.post-content {
  padding: 40px 20px 80px;
}

.post-content h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.post-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.post-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.post-cta {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
}

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

.post-navigation {
  background: var(--bg-light);
  padding: 60px 20px;
}

.back-to-blog {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 40px;
  transition: var(--transition);
}

.back-to-blog:hover {
  color: var(--primary-color);
}

.related-posts h3 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

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

.related-post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

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

.related-post-card h4 {
  padding: 20px;
  color: var(--primary-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .about-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .post-title {
    font-size: 1.8rem;
  }
}