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

:root {
  --primary-color: #1a5f7a;
  --secondary-color: #2d8bba;
  --accent-color: #57c5b6;
  --dark-color: #0d2f3f;
  --light-bg: #f8fbfd;
  --text-color: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

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

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

.primary-navigation {
  background: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.brand-logo img {
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: var(--primary-color);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.daily-quote {
  text-align: center;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

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

.intro-section {
  padding: 80px 20px;
  text-align: center;
}

.intro-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.intro-section p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.feature-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--accent-color);
}

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

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

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

.step-item {
  text-align: center;
  padding: 30px;
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 15px;
}

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

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

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

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

.service-box {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

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

.service-box h3 {
  padding: 20px 30px 10px;
  color: var(--primary-color);
}

.service-box > p {
  padding: 0 30px 15px;
  color: var(--text-light);
}

.service-benefits {
  list-style: none;
  padding: 0 30px 30px;
}

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

.service-benefits li:before {
  content: "✓ ";
  color: var(--success-color);
  font-weight: bold;
  margin-right: 8px;
}

.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
  color: #fff;
}

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

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

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

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.disclaimer-box {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 25px;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

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

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

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

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

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

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

.site-footer {
  background: var(--dark-color);
  color: #fff;
  padding: 60px 20px 20px;
}

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

.footer-section h4 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-color);
}

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

.cookie-banner {
  position: fixed;
  bottom: -500px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
  padding: 30px;
  z-index: 10000;
  transition: bottom 0.5s;
}

.cookie-banner.show {
  bottom: 0;
}

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

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

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

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

.cookie-btn:hover {
  transform: scale(1.05);
}

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

.cookie-btn.reject {
  background: var(--error-color);
  color: #fff;
}

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

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

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

.page-header p {
  font-size: 1.2rem;
  opacity: 0.95;
}

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

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

.blog-post-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.post-content {
  padding: 30px;
}

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

.post-content h2 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.post-content h2 a:hover {
  color: var(--secondary-color);
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.read-more-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more-link:hover {
  color: var(--accent-color);
}

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

.newsletter-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 30px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

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

.newsletter-form button {
  padding: 15px 40px;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

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

.mission-section, .values-section, .approach-section {
  padding: 80px 20px;
}

.mission-section h2, .values-section h2, .approach-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.mission-section p, .approach-section p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
}

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

.value-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

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

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

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

.team-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

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

.team-member {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 30px;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

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

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

.stats-section {
  padding: 80px 20px;
  background: var(--primary-color);
  color: #fff;
}

.stats-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--accent-color);
}

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

.approach-points {
  max-width: 900px;
  margin: 40px auto 0;
}

.approach-point {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 10px;
}

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

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

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

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

.contact-details {
  margin-bottom: 40px;
}

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

.contact-icon {
  font-size: 2rem;
}

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

.business-hours {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 10px;
}

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

.business-hours ul {
  list-style: none;
}

.business-hours li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

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

.submit-btn {
  padding: 15px 40px;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

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

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

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

.map-placeholder {
  background: #fff;
  padding: 60px;
  text-align: center;
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.faq-item {
  background: var(--light-bg);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
}

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

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

.modal-content {
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
}

.modal-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

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

.modal-close {
  margin-top: 30px;
  padding: 12px 40px;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

.post-article {
  background: #fff;
}

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

.post-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.post-content {
  padding: 60px 20px;
}

.content-section {
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

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

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

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

.related-posts h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 40px;
}

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

.related-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.related-card h3 {
  padding: 20px;
}

.related-card a {
  color: var(--primary-color);
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .features-grid, .services-grid, .blog-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header h1 {
    font-size: 1.8rem;
  }
  
  .post-featured-image img {
    height: 300px;
  }
}