/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================================
   ROOT VARIABLES
======================================== */

:root {
  --bg-main: #140c2b;
  --bg-secondary: #1f1447;
  --bg-card: #2a1b5e;

  --accent: #5fd1ff;
  --accent-hover: #38bdf8;

  --text-main: #ffffff;
  --text-muted: #cbd5e1;

/* NEW SPACING SCALE */
  --space-xs: 12px;
  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 80px;
  --space-xl: 120px;
}
/* ========================================
   BASE STYLES
======================================== */

body {
  font-family: system-ui, Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 80px;
}

/* ========================================
   LAYOUT
======================================== */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ========================================
   LOGO
======================================== */

.logo {
  margin-bottom: 10px;
}

/* ========================================
   HERO SECTION
======================================== */

.about-hero {
  text-align: center;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);

}

.subheading {
  color: var(--text-muted);
  font-size: 1.2em;
  margin-top: 10px;
}

/* ========================================
   ABOUT SECTION
======================================== */

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;

  flex: 1;
  min-width: 200px;
}

.about-image img {
  width: 100%;
  max-width: 420px;

  border-radius: 18px;
}

.about-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.9;
}

/* ========================================
   VALUES SECTION
======================================== */

.about-values {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.about-values h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.values-grid div {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,0.05);
}
.values-grid h3 {
  margin-bottom: 10px;
}

.values-grid p {
  color: var(--text-muted);
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
  text-align: center;
  margin: 100px 0;
}

.cta-section p {
  margin: 15px 0 25px;
}
.cta-section p {
  font-size: 20px;
}


/* ========================================
   BUTTONS
======================================== */

.cta-button {
  display: inline-block;
font-size: 17px;
  padding: 18px 34px;
  border-radius: 10px;
text-decoration: none;
  background: var(--accent);
  color: #000;

  font-weight: 700;
  transition: 0.3s;
}

.cta-button:hover {
  background: var(--accent-hover);
}
/* ========================================
   BACK BUTTON
======================================== */

.back-btn {
  position: fixed;
  top: 25px;
  right: 25px;

  z-index: 1000;

  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);

  color: var(--text-main);
  text-decoration: none;

  backdrop-filter: blur(12px);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.back-btn:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(125, 211, 252, 0.5);
}

/* ========================================
   FOOTER
======================================== */

footer {
  text-align: center;
   margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-sm);
  background: var(--bg-secondary);
  color: var(--text-muted);
}