/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: #01ADEF;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0091c7;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header and Navigation */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav {
  padding: 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #01ADEF;
  margin: 0;
}

.logo h1 a {
  color: #01ADEF;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 400;
}

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

.nav-menu li a {
  color: #1f2937;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #01ADEF;
}

.nav-menu li a.active::after,
.nav-menu li a:hover::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #01ADEF;
}

.btn-apply {
  background-color: #01ADEF;
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-apply:hover {
  background-color: #0091c7;
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-toggle .lang-btn {
  background: none;
  border: none;
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
}

.lang-active {
  color: #01ADEF;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background-color: #1f2937;
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background-color: #01ADEF;
  color: white;
}

.btn-primary:hover {
  background-color: #0091c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 173, 239, 0.3);
}

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

.btn-secondary:hover {
  background-color: #01ADEF;
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: #1f2937;
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background-color: #f9fafb;
  border-color: #01ADEF;
  color: #01ADEF;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Main Content */
main {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2f1ff 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Page Hero */
.page-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2f1ff 100%);
  text-align: center;
}

.page-hero-content h1 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Certificates Section */
.certificates-section {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.certificate-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.certificate-icon {
  width: 64px;
  height: 64px;
  background-color: #e6f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #01ADEF;
}

.certificate-card h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.certificate-card p {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.certificate-image {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.certificate-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: contain;
}

/* Target Audience */
.target-audience {
  padding: 4rem 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.audience-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.audience-icon {
  width: 64px;
  height: 64px;
  background-color: #e6f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #01ADEF;
}

.audience-card h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.audience-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.audience-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.audience-card li {
  display: flex;
  align-items: center;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.audience-card li::before {
  content: "✓";
  color: #01ADEF;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Services Overview */
.services-overview {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: #e6f7ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #01ADEF;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.service-features li::before {
  content: "•";
  color: #01ADEF;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* KPI Section */
.kpi-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #01ADEF, #0091c7);
  color: white;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.kpi-card {
  text-align: center;
  padding: 2rem 1rem;
}

.kpi-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.kpi-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.kpi-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: #1f2937;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #01ADEF;
  box-shadow: 0 0 0 3px rgba(1, 173, 239, 0.1);
}

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

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #01ADEF;
  border-color: #01ADEF;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* File Upload */
.file-upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease;
  position: relative;
}

.file-upload-area:hover {
  border-color: #01ADEF;
}

.file-upload-area input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-content svg {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.file-upload-content p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.file-upload-content small {
  color: #9ca3af;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: #01ADEF;
}

.footer-legal {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* About Page Styles */
.company-intro {
  padding: 4rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content h2 {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.intro-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.mv-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.mv-icon {
  width: 64px;
  height: 64px;
  background-color: #e6f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #01ADEF;
}

.mv-card h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.mv-card p {
  color: #6b7280;
  line-height: 1.7;
}

.values {
  padding: 4rem 0;
}

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

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  width: 48px;
  height: 48px;
  background-color: #e6f7ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #01ADEF;
}

.value-card h3 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.value-card p {
  color: #6b7280;
  font-size: 0.9rem;
}

.license-info {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.license-card {
  background-color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.license-icon {
  width: 80px;
  height: 80px;
  background-color: #e6f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01ADEF;
}

.license-content h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.license-details {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.license-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.license-item strong {
  color: #1f2937;
  font-size: 0.9rem;
}

.license-item span {
  color: #6b7280;
  font-size: 0.9rem;
}

.license-content p {
  color: #6b7280;
  font-size: 0.9rem;
  background-color: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #01ADEF;
}

.team-approach {
  padding: 4rem 0;
}

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

.approach-item {
  text-align: center;
  padding: 2rem;
}

.approach-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #01ADEF, #0091c7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.approach-item h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.approach-item p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Services Page Styles */
.services-detailed {
  padding: 4rem 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #e5e7eb;
}

.service-detail:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-detail.reverse {
  grid-template-columns: 1fr 2fr;
}

.service-detail.reverse .service-detail-content {
  order: 2;
}

.service-detail.reverse .service-detail-image {
  order: 1;
}

.service-detail-content {
  display: flex;
  gap: 2rem;
}

.service-detail .service-icon {
  width: 80px;
  height: 80px;
  background-color: #e6f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01ADEF;
  flex-shrink: 0;
}

.service-info h2 {
  font-size: 1.75rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-info p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.service-features h3 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.service-features li::before {
  content: "✓";
  color: #01ADEF;
  font-weight: bold;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-process h3 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.process-steps {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.step-number {
  width: 24px;
  height: 24px;
  background-color: #01ADEF;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-advantages h3 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.advantage-item {
  background-color: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.advantage-item strong {
  display: block;
  color: #1f2937;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.advantage-item span {
  color: #6b7280;
  font-size: 0.8rem;
}

.service-benefits {
  padding: 4rem 0;
  background-color: #f8fafc;
}

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

.benefit-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background-color: #e6f7ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #01ADEF;
}

.benefit-card h3 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* References Page Styles */
.client-logos {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  height: 140px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(1, 173, 239, 0.15);
  border-color: #01ADEF;
}

.logo-placeholder img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-placeholder:hover img {
  transform: scale(1.05);
}

.logo-box {
  width: 150px;
  height: 80px;
  background-color: white;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.logo-box:hover {
  border-color: #01ADEF;
}

.references-table {
  padding: 4rem 0;
}

.references-container {
  margin-top: 3rem;
}

.reference-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid #d1d5db;
  color: #6b7280;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #01ADEF;
  border-color: #01ADEF;
  color: white;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.reference-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
}

.reference-header {
  background: linear-gradient(135deg, #01ADEF, #0091c7);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reference-header h3 {
  font-size: 1.125rem;
  margin: 0;
}

.reference-sector {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.reference-content {
  padding: 1.5rem;
}

.reference-service {
  margin-bottom: 1rem;
}

.reference-service strong {
  color: #1f2937;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}

.reference-service span {
  color: #6b7280;
  font-size: 0.9rem;
}

.reference-details p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.reference-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background-color: #f8fafc;
  border-radius: 8px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #01ADEF;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.testimonials {
  padding: 4rem 0;
  background-color: #f8fafc;
}

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

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-content p {
  color: #6b7280;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info strong {
  display: block;
  color: #1f2937;
  font-size: 0.9rem;
}

.author-info span {
  color: #6b7280;
  font-size: 0.8rem;
}

.success-stats {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card .stat-icon {
  width: 56px;
  height: 56px;
  background-color: #e6f7ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #01ADEF;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #01ADEF;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-main {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info h2 {
  font-size: 1.75rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: 12px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: #e6f7ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01ADEF;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: #01ADEF;
  font-weight: 500;
}

.contact-details small {
  color: #9ca3af;
  font-size: 0.8rem;
}

.office-hours {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.office-hours h3 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.hours-list {
  display: grid;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  color: #6b7280;
  font-size: 0.9rem;
}

.hours-item span:last-child {
  color: #1f2937;
  font-weight: 500;
  font-size: 0.9rem;
}

.emergency-contact {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  padding: 1.5rem;
  border-radius: 12px;
}

.emergency-contact h3 {
  font-size: 1.125rem;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.emergency-contact p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.emergency-phone {
  color: #dc2626;
  font-weight: 600;
  font-size: 1.125rem;
}

.emergency-contact small {
  color: #9ca3af;
  font-size: 0.8rem;
}

.contact-form-section h2 {
  font-size: 1.75rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-alternatives {
  padding: 4rem 0;
  background-color: #f8fafc;
}

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

.alternative-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.alternative-card:hover {
  transform: translateY(-4px);
}

.alternative-icon {
  width: 64px;
  height: 64px;
  background-color: #e6f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #01ADEF;
}

.alternative-card h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.alternative-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.faq-section {
  padding: 4rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question svg {
  color: #01ADEF;
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #6b7280;
  margin: 0;
}

/* Job Application Page Styles */
.application-info {
  padding: 2rem 0;
  background-color: #f8fafc;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: #e6f7ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #01ADEF;
}

.info-card h3 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #6b7280;
  font-size: 0.9rem;
}

.application-form-section {
  padding: 4rem 0;
}

.application-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 2rem;
}

.application-sidebar {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  height: fit-content;
}

.application-sidebar h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.process-steps {
  margin-bottom: 3rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.process-step.active .step-number {
  background-color: #01ADEF;
  color: white;
}

.step-number {
  width: 32px;
  height: 32px;
  background-color: #e5e7eb;
  color: #6b7280;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: #6b7280;
  font-size: 0.85rem;
  margin: 0;
}

.application-tips h4 {
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.application-tips ul {
  list-style: none;
}

.application-tips li {
  color: #6b7280;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.application-tips li::before {
  content: "💡";
  flex-shrink: 0;
}

.application-form-main {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.application-form-main h2 {
  font-size: 1.75rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #01ADEF;
  display: inline-block;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-note {
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.application-notice {
  padding: 2rem 0;
  background-color: #f8fafc;
}

.notice-card {
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}

.notice-icon {
  width: 48px;
  height: 48px;
  background-color: #f59e0b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.notice-content h3 {
  font-size: 1.125rem;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.notice-content p {
  color: #92400e;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }
  
  .service-detail.reverse .service-detail-content,
  .service-detail.reverse .service-detail-image {
    order: unset;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .application-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .logo-image {
    height: 40px;
  }
  
  .logo h1 {
    font-size: 1.25rem;
  }
  
  .logo-subtitle {
    font-size: 0.65rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .certificate-image img {
    max-height: 400px;
  }
  
  .certificate-card {
    padding: 1.5rem;
  }
  
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .service-detail-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .license-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .reference-stats {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .alternatives-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .logo-placeholder {
    height: 120px;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 35px;
  }
  
  .logo h1 {
    font-size: 1.1rem;
  }
  
  .logo-subtitle {
    font-size: 0.6rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .page-hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .certificate-image img {
    max-height: 300px;
  }
  
  .certificate-card {
    padding: 1.25rem;
  }
  
  .kpi-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .audience-card,
  .service-card,
  .value-card,
  .benefit-card {
    padding: 1.5rem;
  }
  
  .mv-card {
    padding: 2rem;
  }
  
  .contact-form,
  .application-form-main {
    padding: 1.5rem;
  }
  
  .application-sidebar {
    padding: 1.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .logos-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .logo-placeholder {
    height: 100px;
    padding: 0.75rem;
  }
}

/* Animation and Transitions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.page-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Print Styles */
@media print {
  .header,
  .footer,
  .cta-section,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .page-hero,
  .section-header {
    page-break-inside: avoid;
  }
}