:root {
  /* Color Palette - Modern Innovation */
  --main-bg: #ffffff;
  --surface: #f8fafc; /* Slate 50 */
  --charcoal: #111827; /* Slate 900 */
  --teal: #10b981; /* Emerald 500 */
  --teal-dark: #059669; /* Emerald 600 */
  --cyan: #06b6d4; /* Cyan 500 */
  --accent: #fb923c; /* Orange 400 */
  --text-main: #334155; /* Slate 700 */
  --text-muted: #6b7280; /* Slate 500 */
  --border: #e2e8f0; /* Slate 200 */
  --c-error: #ef4444; /* Red 500 */

  --f-heading: "Oswald", sans-serif;
  --f-body: "Montserrat", sans-serif;

  --s-soft:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --s-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --s-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.inno-body {
  font-family: var(--f-body);
  color: var(--text-main);
  background-color: var(--main-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--f-heading);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 700;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}
.muted {
  color: var(--text-muted);
}
.lead-text {
  font-size: 1.25rem;
  color: var(--charcoal);
  font-weight: 500;
}
.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* Utilities */
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-md {
  max-width: 768px;
}
.mt-20 {
  margin-top: 1.25rem;
}
.mt-30 {
  margin-top: 2rem;
}
.mt-60 {
  margin-top: 4rem;
}
.mb-40 {
  margin-bottom: 2.5rem;
}
.w-full {
  width: 100%;
}

.bg-surface {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bg-dark {
  background-color: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bg-gradient {
  background: linear-gradient(
    135deg,
    var(--main-bg) 0%,
    rgba(16, 185, 129, 0.05) 100%
  );
}
.text-white {
  color: #fff !important;
}
.text-light {
  color: var(--surface) !important;
}
.text-cyan {
  color: var(--cyan) !important;
}

.accent-bar {
  width: 60px;
  height: 3px;
  background-color: var(--teal);
  margin-bottom: 2rem;
  border-radius: 2px;
}
.accent-bar-white {
  width: 60px;
  height: 3px;
  background-color: #fff;
  margin-bottom: 2rem;
  border-radius: 2px;
}

.underlined {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.underlined:hover {
  color: var(--teal-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--teal);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-primary:hover {
  background-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-solid {
  background-color: var(--charcoal);
  color: #fff;
}
.btn-solid:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: var(--s-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background-color: rgba(17, 24, 37, 0.02);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-svg {
  width: 44px;
  height: 44px;
}
.brand-text {
  font-family: var(--f-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
}

.desktop-nav {
  display: flex;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-link {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--teal);
}
.nav-link.active-link {
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 4px;
}

.header-cta {
  display: block;
}
.burger-menu {
  display: none;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .burger-bar {
    background-color: var(--charcoal);
    height: 2px;
    border-radius: 2px;
    transition: var(--transition);
  }
  .burger-bar:nth-child(1) {
    width: 30px;
  }
  .burger-bar:nth-child(2) {
    width: 20px;
  }
  .burger-bar:nth-child(3) {
    width: 30px;
  }
  .burger-menu:hover .burger-bar {
    width: 30px;
    background-color: var(--teal);
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--main-bg);
  border-left: 1px solid var(--border);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 993px) {
  .mobile-drawer {
    width: 400px;
    right: -400px;
  }
}
@media (max-width: 992px) {
  .mobile-drawer {
    width: 100vw;
    right: -100vw;
    border-left: none;
  }
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  height: 90px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.drawer-brand {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.drawer-close {
  background: rgba(17, 24, 37, 0.05);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  transition: var(--transition);
}
.drawer-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--c-error);
  border-color: var(--c-error);
  transform: rotate(90deg);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: auto;
}
.drawer-link {
  font-family: var(--f-heading);
  font-size: 1.75rem;
  color: var(--text-main);
  display: block;
  transition: var(--transition);
  border-left: 2px solid transparent;
  padding-left: 0;
}
.drawer-link:hover {
  color: var(--teal);
  padding-left: 12px;
  border-left-color: var(--teal);
}
.highlight-contact {
  color: var(--charcoal);
  font-weight: 700;
  border-bottom: 2px dashed var(--teal);
  padding-bottom: 4px;
  display: inline-block;
}
.highlight-contact:hover {
  color: var(--teal);
}

.drawer-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.drawer-footer p {
  margin-bottom: 10px;
}
.drawer-mail {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 500;
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 37, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}
.drawer-scrim.active {
  opacity: 1;
  visibility: visible;
}

/* Global Sections */
.content-section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .content-section {
    padding: 80px 0;
  }
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.hero-image-frame {
  position: relative;
  display: inline-block;
}
.hero-image-frame img {
  border-radius: 8px;
  box-shadow: var(--s-lg);
  border: 2px solid #fff;
}
.pre-title {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 4px;
  font-family: var(--f-heading);
  font-size: 0.85rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.decorative-blob {
  position: absolute;
  top: 10%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
  }
  .decorative-blob {
    display: none;
  }
}

/* Cols Grids */
.grid-layout {
  display: grid;
  gap: 30px;
}
.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
@media (max-width: 768px) {
  .cols-2 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.course-card {
  background: var(--main-bg);
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-md);
  border-color: var(--teal);
}
.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.card-icon i {
  color: var(--cyan);
  width: 32px;
  height: 32px;
}

.mon-card {
  background: var(--main-bg);
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--cyan);
  box-shadow: var(--s-soft);
}
.mon-card h4 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

/* Flex Layouts */
.flex-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}
.flex-visual,
.flex-text {
  flex: 1;
}
.flex-visual img {
  border-radius: 8px;
  box-shadow: var(--s-md);
  border: 2px solid #fff;
}
.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .flex-layout,
  .reverse {
    flex-direction: column;
  }
}

/* Timeline Steps */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}
.step-item {
  position: relative;
  padding-top: 40px;
  border-top: 2px solid var(--surface);
}
.step-item::after {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  border: 4px solid var(--charcoal);
}
.step-num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--f-heading);
  font-size: 3rem;
  color: var(--surface);
  font-weight: 700;
  line-height: 1;
}
.step-item h4 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.step-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* Mosaic Blocks */
.visual-block.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mosaic-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--s-soft);
}
.img-1 {
  grid-row: span 2;
  height: 420px;
}

/* Diagnostic scan */
.diag-icon {
  width: 80px;
  height: 80px;
  color: var(--teal);
  margin-bottom: 30px;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--main-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: var(--transition);
}
.faq-btn:hover {
  background: rgba(17, 24, 37, 0.02);
  color: var(--teal);
}
.f-icon {
  color: var(--teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .f-icon {
  transform: rotate(180deg);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-content {
  padding: 0 24px 24px;
  color: var(--text-main);
}

/* Contacts Grid */
.cols-form {
  grid-template-columns: 1.2fr 1fr;
}
@media (max-width: 992px) {
  .cols-form {
    grid-template-columns: 1fr;
  }
  .contact-info-side {
    order: -1;
  }
}

.cyber-form {
  background: var(--main-bg);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--s-md);
}
.form-title {
  font-size: 2rem;
  margin-bottom: 10px;
}
.form-subtext {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-row {
  margin-bottom: 24px;
}
.form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.form-row input:not([type="checkbox"]) {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--f-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--surface);
}
.form-row input:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--main-bg);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.error-msg {
  display: none;
  color: var(--c-error);
  font-size: 0.85rem;
  margin-top: 8px;
  font-weight: 500;
}
.captcha-hl {
  color: var(--teal);
  font-size: 1.25rem;
  font-family: var(--f-heading);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-row input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  cursor: pointer;
}
.chk-label {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  font-weight: 400 !important;
  line-height: 1.6;
  margin: 0 !important;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.c-icon {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.c-icon i {
  color: var(--teal);
  width: 24px;
  height: 24px;
}
.c-text strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.c-text span {
  color: rgba(255, 255, 255, 0.7);
}
.f-hl-link {
  display: inline-block;
  color: var(--cyan);
  text-decoration: underline;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--surface);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.95rem;
  max-width: 350px;
}
.footer-h4 {
  color: var(--charcoal);
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-links a {
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}
.f-links a:hover {
  color: var(--teal);
}

.f-contact-block p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.footer-email {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Cookie Pop-up */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 24px;
  z-index: 9000;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-popup.show {
  bottom: 0;
}
.cookie-content {
  background: var(--main-bg);
  padding: 24px 32px;
  border-radius: 8px;
  box-shadow: var(--s-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  width: 100%;
}
.cookie-icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
  flex-shrink: 0;
}
.cookie-text h4 {
  margin-bottom: 8px;
}
.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
#acceptCookieBtn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  #acceptCookieBtn {
    width: 100%;
  }
}

/* Toast */
.sys-toast {
  position: fixed;
  top: 100px;
  right: -400px;
  background: var(--main-bg);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--s-md);
  z-index: 9999;
  transition: right 0.4s ease;
  width: 340px;
  border-left: 4px solid var(--teal);
}
.sys-toast.show {
  right: 24px;
}
.toast-flex {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.toast-icon {
  color: var(--teal);
  margin-top: 2px;
}
.toast-body strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.toast-body span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
