:root {
  --primary-color: #1e3a8a;
  --secondary-color: #3b82f6;
  --accent-color: #f59e0b;
  --text-color: #1f2937;
  --light-color: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

.content-wrapper {
  min-height: 400px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 25px;
  z-index: 10000;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.cookie-text p {
  margin-bottom: 15px;
  color: #666;
}

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

.cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

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

.cookie-btn.accept-all:hover {
  background: #059669;
}

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

.cookie-btn.customize:hover {
  background: var(--primary-color);
}

.cookie-btn.reject {
  background: #6b7280;
  color: #ffffff;
}

.cookie-btn.reject:hover {
  background: #4b5563;
}

.cookie-policy-link {
  color: var(--secondary-color);
  text-decoration: underline;
  font-size: 0.9rem;
}

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: var(--transition);
}

.cookie-close:hover {
  color: var(--error-color);
}

.cookie-option {
  margin: 25px 0;
  padding: 20px;
  background: var(--light-color);
  border-radius: 8px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
}

.cookie-option input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-option p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Navigation */
.main-navigation {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.navigation-menu a {
  color: var(--text-color);
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 6px;
  transition: var(--transition);
}

.navigation-menu a:hover,
.navigation-menu a.active {
  color: var(--secondary-color);
  background: var(--light-color);
}

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

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* Welcome Banner */
.welcome-banner {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(59, 130, 246, 0.95)), url('images/1.jpg') center/cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: #ffffff;
  position: relative;
}

.welcome-overlay {
  width: 100%;
}

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

.welcome-intro {
  font-size: 1.1rem;
  margin-bottom: 15px;
  opacity: 0.95;
  letter-spacing: 1px;
}

.main-heading {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.welcome-description {
  font-size: 1.3rem;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

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

.secondary-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition);
}

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

/* Sections */
.intro-section,
.services-section,
.process-section,
.featured-posts-section,
.stats-section,
.faq-section,
.cta-final-section {
  padding: 80px 0;
}

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

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.intro-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.intro-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  text-align: center;
}

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

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

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

.service-card p {
  color: #666;
  line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

/* Featured Posts */
.featured-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.featured-post-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

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

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

.post-content {
  padding: 25px;
}

.post-content h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.7;
}

.read-more-link {
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
}

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

.center-button {
  text-align: center;
  margin-top: 50px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 25px;
  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(--light-color);
}

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

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

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

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

.faq-answer p {
  padding: 0 25px 25px;
  color: #666;
  line-height: 1.7;
}

/* CTA Final Section */
.cta-final-section {
  background: var(--light-color);
}

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

.cta-final-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cta-final-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 35px;
}

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

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

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

/* Page Hero Banner */
.page-hero-banner {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(59, 130, 246, 0.95)), url('images/2.jpg') center/cover;
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
}

.about-hero {
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(59, 130, 246, 0.95)), url('images/7.jpg');
}

.contact-hero {
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(59, 130, 246, 0.95)), url('images/8.jpg');
}

.hero-pretitle {
  font-size: 1.1rem;
  margin-bottom: 15px;
  opacity: 0.9;
  letter-spacing: 1px;
}

.hero-main-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Listing */
.blog-intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.blog-intro-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-post-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

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

.post-image-wrapper {
  position: relative;
}

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

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-card-content {
  padding: 30px;
}

.post-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #999;
  flex-wrap: wrap;
}

.post-excerpt {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.post-read-more {
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
}

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

/* Blog Categories */
.blog-categories-section {
  background: var(--light-color);
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.category-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.category-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.category-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 60px 0;
}

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

.newsletter-content h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.newsletter-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-button {
  padding: 15px 35px;
  background: var(--accent-color);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-button:hover {
  background: #d97706;
}

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

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.story-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.value-card p {
  color: #666;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 50px;
}

.team-member-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  align-items: center;
}

.member-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.member-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.member-role {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-bio {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.achievement-item {
  text-align: center;
}

.achievement-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.achievement-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.achievement-item p {
  color: #666;
  font-size: 0.95rem;
}

.mission-vision-section {
  padding: 80px 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.mission-card,
.vision-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mission-card h2,
.vision-card h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

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

.approach-content {
  max-width: 900px;
  margin: 50px auto 0;
}

.approach-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.approach-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  opacity: 0.3;
  min-width: 80px;
}

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

.approach-details p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

.cta-about-section {
  padding: 80px 0;
}

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

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

.cta-about-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 35px;
}

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

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

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

.contact-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.contact-method-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

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

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

.contact-method-card p {
  color: #666;
  margin-bottom: 8px;
}

.contact-method-card a {
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-method-note {
  font-size: 0.9rem;
  color: #999;
  margin-top: 10px;
}

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

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

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

.form-content > p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

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

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

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

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

.form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.sidebar-card p {
  color: #666;
  line-height: 1.7;
}

.success-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;
  padding: 20px;
}

.success-modal-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  position: relative;
}

.success-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
}

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

.success-modal-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.success-modal-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.success-button {
  padding: 12px 40px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.success-button:hover {
  background: var(--secondary-color);
}

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

.map-wrapper {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-note {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 1.1rem;
}

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

.cta-contact-section {
  padding: 80px 0;
}

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

.cta-contact-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cta-contact-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 35px;
}

/* Footer */
.site-footer {
  background: #1f2937;
  color: #ffffff;
  padding: 60px 0 20px;
}

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

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-column p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 15px;
}

.registration-number {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

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

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

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

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

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

.footer-contact li {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.8);
}

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

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

.working-hours {
  margin-top: 15px;
  color: rgba(255,255,255,0.8);
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .intro-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-posts-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member-card {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .navigation-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
  }

  .navigation-menu.active {
    display: flex;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .welcome-description {
    font-size: 1.1rem;
  }

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

  .services-grid,
  .values-grid,
  .process-timeline,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .achievements-grid,
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons-group {
    flex-direction: column;
  }

  .hero-main-title {
    font-size: 2.2rem;
  }
}