/* === VARIABLES & RESET === */
:root {
  --clr-emerald: #065f46;
  --clr-emerald-hover: #044e3a;
  --clr-gold: #f59e0b;
  --clr-cream: #fef3c7;
  --clr-dark: #1f2937;
  --clr-white: #ffffff;
  --clr-text: #374151;
  --clr-text-light: #6b7280;
  --clr-border: #e5e7eb;

  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;

  --transition: all 0.3s ease;
  --max-width: 1200px;
  --max-width-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background-color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* === UTILS === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: 100px 0;
  position: relative;
}

.bg-cream {
  background-color: var(--clr-cream);
}
.bg-dark {
  background-color: var(--clr-dark);
  color: var(--clr-white);
}
.text-white {
  color: var(--clr-white) !important;
}
.text-light {
  color: #d1d5db !important;
}
.text-emerald {
  color: var(--clr-emerald);
}

.shadow-box {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.mt-4 {
  margin-top: 2rem;
  width: 100%;
  border: none;
  height: 50px;
  cursor: pointer;
  background-color: var(--clr-emerald);
  color: var(--clr-white);
}
.mt-4:hover {
  background-color: var(--clr-emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 95, 70, 0.2);
}
.btn-full {
  width: 100%;
  display: none !important;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-dark);
}

.bg-dark h2,
.bg-dark h3 {
  color: var(--clr-white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.center-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--clr-text-light);
}

.divider {
  width: 60px;
  height: 3px;
  background-color: var(--clr-gold);
  margin-bottom: 2rem;
}
.divider.emerald {
  background-color: var(--clr-emerald);
}

/* === BUTTONS === */
.btn-emerald {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: var(--clr-emerald);
  color: var(--clr-white);
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-emerald:hover {
  background-color: var(--clr-emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 95, 70, 0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 2px solid var(--clr-dark);
  color: var(--clr-dark);
  font-weight: 600;
  border-radius: 8px;
}
.btn-outline:hover {
  background-color: var(--clr-dark);
  color: var(--clr-white);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--clr-dark);
}
.btn-text:hover {
  color: var(--clr-emerald);
  gap: 12px;
}

.link-emerald {
  color: var(--clr-emerald);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
}
.link-emerald:hover {
  gap: 12px;
  color: var(--clr-gold);
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-border);
  z-index: 1000;
  padding: 15px 0;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--clr-dark);
}
.brand-icon {
  transition: transform 0.4s ease;
}
.brand:hover .brand-icon {
  transform: rotate(90deg);
}

.desktop-nav {
  display: flex;
  gap: 30px;
}
.desktop-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-emerald);
  transition: var(--transition);
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--clr-emerald);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-weight: 600;
}
.nav-link:hover {
  color: var(--clr-emerald);
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-dark);
}

/* === MOBILE MENU === */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--clr-white);
  z-index: 2000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.fullscreen-menu.active {
  transform: translateY(0);
}
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.menu-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-dark);
}
.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-dark);
}
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: auto;
}
.menu-nav a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-dark);
}

/* === HERO === */
.hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: var(--clr-cream);
  z-index: -1;
  border-bottom-left-radius: 100px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(6, 95, 70, 0.1);
  color: var(--clr-emerald);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 600px;
}
.hero-controls {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}
.hero-note {
  font-size: 0.85rem;
  color: var(--clr-text-light);
}

.hero-visual {
  position: relative;
}
.image-arch {
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  border: 4px solid var(--clr-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.image-arch img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.floating-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background-color: var(--clr-white);
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--clr-gold);
  display: flex;
  flex-direction: column;
}
.floating-badge strong {
  font-size: 1.2rem;
  color: var(--clr-dark);
}
.floating-badge span {
  font-size: 0.85rem;
  color: var(--clr-text-light);
}

/* === LAYOUTS === */
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.layout-split.reverse {
  direction: rtl;
}
.layout-split.reverse > * {
  direction: ltr;
}

.rounded-img {
  border-radius: 16px;
  box-shadow: 20px 20px 0 var(--clr-emerald);
}
.check-list {
  margin-top: 30px;
}
.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.check-list i {
  color: var(--clr-emerald);
}

/* === COURSES === */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.course-card {
  background-color: var(--clr-white);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--clr-emerald);
}
.course-card.highlight {
  background-color: var(--clr-dark);
  color: var(--clr-white);
}
.course-card.highlight h3 {
  color: var(--clr-white);
}
.course-card.highlight p {
  color: #d1d5db;
}
.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--clr-cream);
  color: var(--clr-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* === SQUARES === */
.info-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.square {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}
.square:hover {
  background-color: var(--clr-emerald);
  border-color: var(--clr-emerald);
  transform: scale(1.05);
}
.square strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
}
.square span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-gold);
}

/* === BANNER & QUIZ === */
.banner-box,
.quiz-box {
  background-color: var(--clr-white);
  padding: 60px;
  border-radius: 16px;
  text-align: center;
}
.banner-content {
  max-width: 800px;
  margin: 0 auto;
}
.quiz-box {
  max-width: 800px;
  margin: 0 auto;
  border-top: 5px solid var(--clr-gold);
}
.quiz-icon {
  width: 64px;
  height: 64px;
  color: var(--clr-emerald);
  margin-bottom: 20px;
}

/* === FAQ === */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.acc-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
}
.acc-btn i {
  color: var(--clr-gold);
  transition: var(--transition);
}
.acc-item.active .acc-btn i {
  transform: rotate(45deg);
}
.acc-collapse {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 24px;
}
.acc-collapse p {
  color: #d1d5db;
  padding-bottom: 24px;
  margin: 0;
}
.acc-item.active .acc-collapse {
  max-height: 300px;
}

/* === FORM === */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 24px;
  overflow: hidden;
}
.form-info {
  padding: 60px 50px;
}
.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: 500;
}
.c-line i {
  color: var(--clr-emerald);
}

.form-inputs {
  padding: 60px 50px;
  background-color: var(--clr-white);
}
.form-inputs h3 {
  margin-bottom: 30px;
  font-size: 2rem;
}

/* THE REQUESTED COLUMN FORM LAYOUT FOR ALL DEVICES */
.stacked-col-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.input-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.input-block label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-dark);
}

.input-block input[type="text"],
.input-block input[type="email"],
.input-block input[type="tel"],
.input-block input[type="number"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f9fafb;
}

.input-block input:focus {
  outline: none;
  border-color: var(--clr-emerald);
  background-color: var(--clr-white);
}

.terms-block {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.terms-block input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.terms-block label {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  font-weight: 400;
}
.terms-block a {
  color: var(--clr-emerald);
  text-decoration: underline;
}

/* === FOOTER === */
.site-footer {
  background-color: var(--clr-dark);
  color: #9ca3af;
  padding: 80px 0 30px;
  border-top: 5px solid var(--clr-emerald);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.f-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-white);
  display: block;
  margin-bottom: 16px;
}
.f-desc {
  margin-bottom: 24px;
  max-width: 300px;
}
.f-contact-link {
  color: var(--clr-gold);
  font-weight: 600;
  border-bottom: 1px solid var(--clr-gold);
}
.footer-nav h4 {
  color: var(--clr-white);
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 1.1rem;
}
.footer-nav a {
  display: block;
  margin-bottom: 12px;
}
.footer-nav a:hover {
  color: var(--clr-emerald);
  transform: translateX(5px);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* === COOKIE === */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  z-index: 5000;
  display: none;
}
.cookie-inner {
  background-color: var(--clr-white);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-left: 4px solid var(--clr-emerald);
}
.cookie-inner p {
  margin: 0;
  font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .desktop-nav,
  .header-actions .btn-outline,
  .header-actions .nav-link {
    display: none;
  }
  .burger-btn {
    display: block;
  }

  .hero-content,
  .layout-split,
  .form-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-bg {
    width: 100%;
    border-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 30px;
  }
  .hero-controls {
    justify-content: center;
  }
  .floating-badge {
    left: 20px;
    bottom: 20px;
  }

  .grid-cards {
    grid-template-columns: 1fr;
  }
  .form-info,
  .form-inputs {
    padding: 40px 30px;
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }
  h1 {
    font-size: 2.2rem;
  }
  .hero-controls {
    flex-direction: column;
  }
  .info-squares {
    grid-template-columns: 1fr;
  }
}

.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: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 22px;
    margin-top: 25px;
  }
  .margin {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .pages {
    padding: 90px 0 50px;
  }
  .pages h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .text-wrapper {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .text-wrapper h2 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .text-wrapper h3 {
    font-size: 16px;
  }
  .text-wrapper p {
    font-size: 13px;
    line-height: 1.6;
  }
  .margin {
    font-size: 24px;
    margin: 80px 0 30px;
  }
  .split-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .pages {
    padding: 80px 0 40px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .text-wrapper {
    padding: 15px 10px;
  }
  .text-wrapper h2 {
    font-size: 16px;
    margin-top: 15px;
  }
  .text-wrapper h3 {
    font-size: 14px;
  }
  .text-wrapper p {
    font-size: 12px;
  }
  .margin {
    font-size: 20px;
    margin: 60px 0 20px;
  }
}

/* --- 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;
}

.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: 768px) {
  .contact-page-main {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .cp-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .cp-phone-link {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

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

  .cp-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .cp-divider {
    margin: 0 auto 30px auto;
  }

  .cp-status {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 40px;
  }

  .cp-phone-link {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .cp-details {
    gap: 8px;
  }

  .cp-label {
    font-size: 12px;
  }

  .cp-address-box {
    padding-top: 20px;
    max-width: 100%;
  }

  .cp-addr {
    font-size: 16px;
  }

  .cp-email {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-page-main {
    padding-top: 100px;
    min-height: 70vh;
  }

  .cp-title {
    font-size: 22px;
  }

  .cp-divider {
    width: 50px;
  }

  .cp-status {
    font-size: 12px;
  }

  .cp-phone-link {
    font-size: 20px;
  }

  .cp-addr {
    font-size: 14px;
  }

  .cp-email {
    font-size: 12px;
  }
}
