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

:root {
    --primary-blue: #2563eb;
    --secondary-blue: #1e40af;
    --light-blue: #dbeafe;
    --dark-blue: #1e3a8a;
    --orange: #ea580c;
    --light-orange: #fed7aa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --pattern-opacity: 0.08; /* tweak: lower = more subtle cubes */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    position: relative;
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


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

.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

.logo-text { 
    color: #2563eb; 
    font-weight: 700;
}

.nav-menu a {
    color: #111827;  /* Very dark gray, almost black */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-menu a:hover { 
    color: #ea580c; 
}

.nav-menu {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
    gap: 1.25rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero { padding: 8rem 2rem 6rem; margin-top: 80px; }

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image { flex: 0 0 350px; position: relative; }

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 5px solid white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
    text-align: center;
}

/* Certification Badges */
.certification-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-700);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* .badge-progress {
  border: 2px dashed rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.1);
} */

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #ff6b35;
  color: #000000; /* Changed from white to black */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}

/* ===================================
   RESULTS SECTION STYLES
   =================================== */

.results {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.03));
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.result-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.result-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.3;
}

.result-client {
  font-size: 0.9rem;
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 1rem;
  font-style: italic;
}

.result-card > p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.result-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-metrics li {
  padding: 0.5rem 0;
  color: #333;
  font-weight: 500;
  border-top: 1px solid #eee;
}

.result-metrics li:first-child {
  border-top: none;
  padding-top: 0;
}

.trust-statement {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-statement p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* ===================================
   CONTACT SECTION - STACKED LAYOUT
   =================================== */

.contact {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-container > h2 {
  margin-bottom: 1rem;
}

.contact-container > p {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
  font-size: 1.1rem;
}

/* Contact Info Card (Top) */
.contact-info-top {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info-top h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 700;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.5;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-detail {
  padding: 1.25rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.6rem;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
}

.contact-detail a {
  color: #ff6b35;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-detail span {
  color: #555;
  font-size: 1.1rem;
}

/* CTA Buttons in Contact Info */
.contact-actions-top {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-actions-top .cta-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  flex: 0 1 auto;
  min-width: 200px;
}

.cta-secondary {
  background: white;
  color: #ff6b35 !important;
  border: 2px solid #ff6b35;
}

.cta-secondary:hover {
  background: #ff6b35;
  color: #000000 !important;
}

/* Contact Form (Bottom) */
.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-form-wrapper h3 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.8rem;
  text-align: center;
}

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

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

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-row .form-group {
    margin-bottom: 0;
  }
  
  .contact-actions-top {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-actions-top .cta-button {
    width: 100%;
  }
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-features { list-style: none; margin-bottom: 2rem; flex-grow: 1; }

.service-card .cta-button { margin-top: auto; display: block; text-align: center; width: 100%; }

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

.service-card.featured {
    border: 2px solid var(--primary-blue);
    position: relative;
}

.service-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    background: var(--primary-blue);
}

.service-title { font-size: 1.5rem; font-weight: bold; color: var(--gray-900); margin-bottom: 0.5rem; }

.service-subtitle { color: var(--gray-600); margin-bottom: 1rem; font-style: italic; }

.service-price { font-size: 2rem; font-weight: bold; color: var(--primary-blue); margin-bottom: 1.5rem; }

.price-note { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1rem; font-style: italic; }

.service-features li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; }
.service-features li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: bold; }

/* Core Services (no background paint) */
.core-services { padding: 6rem 2rem; }

.core-services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center;
}

.core-service {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.core-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.core-service h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: bold;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-blue);
}

.core-service ul { list-style: none; flex-grow: 1; }

.core-service li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    color: var(--gray-600);
    position: relative;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.core-service:hover li { color: var(--gray-700); }
.core-service li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: bold; }

/* Innovation & AI (no section background) */
.innovation-ai { padding: 6rem 2rem; }

.innovation-container { max-width: 1200px; margin: 0 auto; text-align: center; }

.innovation-content { max-width: 800px; margin: 0 auto; text-align: left; }

.innovation-text h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.innovation-text p { font-size: 1.1rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 1.5rem; }

.ai-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin: 2rem 0;
}

.ai-tag {
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.innovation-note { font-style: italic; color: var(--gray-600); text-align: center; font-size: 0.95rem; margin-top: 2rem; }

/* ===================================
   WHY CHOOSE / BENEFITS SECTION
   =================================== */

.benefits {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(255, 140, 66, 0.05));
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

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

.benefit {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: none;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 700;
}

.benefit p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Desktop layout */
@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
  }
}

/* ===================================
   CUSTOM PROCESS SECTION 
   (Add this to your existing styles.css)
   =================================== */

.custom-process-section {
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(255, 140, 66, 0.05));
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.process-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  margin: 1rem auto 3rem;
  max-width: 700px;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--gray-100);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--orange);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.process-step p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.pricing-context {
  text-align: center;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--orange);
}

.pricing-context p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.custom-solutions-highlight {
  margin: 2rem 0 2.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.custom-solutions-highlight h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
}

.custom-solutions-highlight p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.cta-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin: 0 auto;
  display: block;
  max-width: 300px;
}

/* Section Divider */
.section-divider {
  text-align: center;
  margin: 4rem 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-300), transparent);
}

.section-divider::before {
  left: 0;
}

.section-divider::after {
  right: 0;
}

.section-divider span {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: white;
  color: var(--gray-600);
  font-size: 0.95rem;
  font-style: italic;
  text-transform: lowercase;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

/* Standard Packages Titles */
.packages-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.packages-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-process-section {
    padding: 2rem 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 1.3rem;
  }

  .section-divider::before,
  .section-divider::after {
    width: 25%;
  }

  .section-divider span {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}

/* Industries (no section background) */
.industries { padding: 6rem 2rem; }
.industries-container { max-width: 1200px; margin: 0 auto; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.industry-card { background: var(--gray-50); padding: 2rem; border-radius: 15px; border-left: 4px solid var(--orange); }
.industry-card h3 { color: var(--gray-900); font-size: 1.3rem; margin-bottom: 1rem; }

/* Contact (no section background) */
.contact { padding: 6rem 2rem; text-align: center; }
.contact-container { max-width: 800px; margin: 0 auto; }
.contact-info { background: white; padding: 3rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-top: 2rem; }
.contact-detail { margin: 1rem 0; font-size: 1.1rem; word-break: break-word; overflow-wrap: break-word; hyphens: none; }
.contact-detail a[href^="mailto:"] { word-break: break-all; overflow-wrap: anywhere; }
.contact-detail strong { color: var(--primary-blue); }

/* Footer */
.footer { background: var(--gray-900); color: white; padding: 2rem; text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--primary-blue); flex-direction: column; padding: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .nav-menu.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .hero .subtitle { font-size: 1.1rem; }
    .hero-container { flex-direction: column-reverse; }
    .hero-image { flex: 0 0 auto; width: 250px; margin: 0 auto 2rem; }
    .certification-badges { flex-direction: column; align-items: center; }
    .badge { text-align: center; width: 100%; max-width: 300px; }
    .services-grid, .core-grid, .benefits-grid, .industries-grid { grid-template-columns: 1fr; }
    .logo img { height: 35px; }
    .contact-detail { font-size: 0.95rem; }
    .contact-info { padding: 2rem 1.5rem; }
    .contact-info > div:last-child { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
    .contact-info .cta-button { margin-left: 0 !important; width: 100%; text-align: center; }
    .ai-features { justify-content: center; }
    .ai-tag { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Scroll reveal */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* About Me */
.about-me { padding: 6rem 2rem; }
.about-container { max-width: 1200px; margin: 0 auto; }
.about-content { display: flex; gap: 4rem; align-items: stretch; margin-top: 3rem; }
.about-image { flex: 0 0 400px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.about-text { flex: 1; display: flex; align-items: center; }
.personal-approach { padding: 2.5rem; border-radius: 15px; border-left: 4px solid var(--orange); width: 100%; background: rgba(255,255,255,0.95); }
.personal-approach h4 { color: var(--gray-900); margin-bottom: 2rem; font-size: 1.4rem; font-weight: bold; }
.approach-points { display: flex; flex-direction: column; gap: 1.5rem; }
.approach-item { line-height: 1.7; }
.approach-item strong { color: var(--primary-blue); display: block; margin-bottom: 0.3rem; font-size: 1.1rem; }

@media (max-width: 768px) {
    .about-content { flex-direction: column; }
    .about-image { flex: 0 0 auto; width: 100%; max-width: 350px; margin: 0 auto; }
    .about-text { align-items: flex-start; }
}

/* Language Switcher */
.language-switcher { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; margin-left: 1rem; }
.lang-label { 
    color: #6b7280; 
    font-size: 0.75rem; 
    font-weight: 500; 
}
.lang-buttons { display: flex; align-items: center; gap: 0.35rem; }
.lang-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 28px; padding: 0; border: none; background: none; cursor: pointer; }
.lang-btn img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 3px; }
.lang-btn:hover { background: rgba(255, 255, 255, 0.25); transform: scale(1.05); }
.lang-btn.active { background: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); }
.lang-code { display: none; }
@media (max-width: 768px) {
    .language-switcher { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); margin-left: 0; }
    .lang-label { display: none; }
}

