.main-content {
  padding-top: 80px;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(rgba(44, 92, 127, 0.7), rgba(44, 92, 127, 0.8)), url('../images/hero1-modern-office-technology_orig.jpg') center/cover;
  color: white;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.4;
}

.hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.hero-cta-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.hero-cta-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4);
}

.hero-cta-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.values-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: translateX(-50%);
  border-radius: 0 0 2px 2px;
}

.value-card:hover {
  transform: translateY(-8px) rotateY(2deg);
  box-shadow: 0 16px 48px rgba(44, 92, 127, 0.15);
}

.value-card:nth-child(2) {
  animation-delay: 0.1s;
}

.value-card:nth-child(3) {
  animation-delay: 0.2s;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.value-title {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--primary);
}

.value-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.services-overview-section {
  padding: 80px 0;
  background: white;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.service-preview-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.service-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 92, 127, 0.15);
}

.service-preview-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-preview-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.service-preview-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-preview-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.service-preview-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-preview-link:hover {
  gap: 12px;
}

.news-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.news-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 92, 127, 0.15);
}

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

.news-card-content {
  padding: 24px;
}

.news-card-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}

.news-card-excerpt {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 16px;
}

.news-card-date {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

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

.testimonial-author-name {
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.testimonial-author-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.about-intro-section {
  padding: 80px 0;
  background: white;
}

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

.about-intro-text h2 {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(44, 92, 127, 0.15);
}

.about-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

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

.legal-data-section {
  padding: 80px 0;
  background: white;
}

.legal-data-box {
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-data-title {
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

.legal-data-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.legal-data-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-data-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-data-value {
  color: var(--text-secondary);
  font-weight: 500;
}

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

.services-detailed-grid {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.projects-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background: white;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.resources-section {
  padding: 80px 0;
  background: white;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.contact-details-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(74, 144, 226, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 16px;
}

.contact-info-content p {
  color: var(--text-secondary);
  margin: 0;
}

.map-container {
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44, 92, 127, 0.15);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(rgba(44, 92, 127, 0.8), rgba(74, 144, 226, 0.8)), url('../images/banner4-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 42px;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-intro-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-data-content {
    grid-template-columns: 1fr;
  }
  
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-description {
    font-size: 18px;
  }
}