main {
  padding-top: 80px;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.3;
  z-index: 1;
}

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

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 24px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 32px;
  color: #e2e8f0;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(rgba(15,23,42,0.9), rgba(15,23,42,0.9)), url('images/banner4-modern-office-technology_orig.jpg') center/cover;
  text-align: center;
  color: white;
  overflow: hidden;
}

.about-section {
  padding: 100px 0;
  background: var(--bg-card);
  overflow: hidden;
}

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

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.about-text h2 {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
}

.services-grid-section {
  padding: 100px 0;
  background: var(--bg-primary);
  overflow: hidden;
}

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

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

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'Courier New', monospace;
}

.stat-label {
  font-size: 16px;
  color: #cbd5e1;
}

.testimonials-section {
  padding: 100px 0;
  background: var(--bg-card);
  overflow: hidden;
}

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

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

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

.faq-section {
  padding: 100px 0;
  background: var(--bg-card);
  overflow: hidden;
}

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

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

.faq-question {
  padding: 24px;
  background: var(--bg-primary);
  color: white;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-dark);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 24px;
}

.faq-toggle {
  font-size: 20px;
  transition: transform 0.3s ease;
}

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

.contact-section {
  padding: 100px 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  color: white;
  margin-bottom: 24px;
}

.contact-details {
  list-style: none;
  margin-bottom: 32px;
}

.contact-details li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  color: #cbd5e1;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  fill: var(--accent);
}

.office-hours {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
}

.office-hours h3 {
  color: white;
  margin-bottom: 16px;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #cbd5e1;
}

.page-title-section {
  padding: 120px 0 60px;
  background: var(--bg-primary);
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-area {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  color: #94a3b8;
}

.breadcrumb-list li {
  margin: 0 8px;
}

.breadcrumb-list a {
  color: var(--accent);
}

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

.financial-calculator-section {
  background: var(--bg-card);
  padding: 60px 0;
  overflow: hidden;
}

.calculator-widget {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--card-shadow);
}

.calculator-form {
  display: grid;
  gap: 20px;
}

.input-group {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  align-items: center;
}

.calculator-input {
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
}

.calculator-result {
  background: var(--bg-primary);
  color: white;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content-wrapper,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid,
  .stats-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .input-group {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

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

.floating-shapes::before,
.floating-shapes::after {
  content: '';
  position: absolute;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  filter: blur(40px);
}

.floating-shapes::before {
  width: 300px;
  height: 300px;
  top: 20%;
  left: -150px;
  animation: float 8s ease-in-out infinite;
}

.floating-shapes::after {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: -100px;
  animation: float 6s ease-in-out infinite reverse;
}

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