body {
  --primary: #0f172a;
  --accent: #b3e0dc;
  --darker-accent: #44d7ca;
  --highlight: #efe558;
  --text-muted: #64748b;
  --border-light: #e5e7eb;
  --bg-soft: #f8fafc;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
}

.about-wrapper {
    width: 85%;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 70px;
}

.title {
    text-align: center;
    margin-top: 30px;
    font-size: 34px;
}

/* --- HERO SECTION --- */
.hero-section {
    background: var(--accent);
    border-radius: 25px;
    padding: 35px 35px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    color: #2A2A2A;
}

.hero-text {
    width: 30%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
}

.tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    padding: 6px;
    margin-bottom: 18px;
    color: white;
    border-radius: 6px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tag.teal { background: var(--darker-accent); }
.tag.yellow { background: var(--highlight); }

.hero-text p { margin-bottom: 16px; }

.hero-img {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img img {
    max-width: 100%;
    max-height: 340px;
    height: auto;
    width: auto;
    border-radius: 14px;
    border: 3px solid var(--highlight);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hero-img figure { text-align: center; }

.hero-img figcaption {
    margin-top: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #555;
    font-style: italic;
}

.hero-text,
.hero-img {
    transition: transform 0.3s ease;
}

.hero-text:hover,
.hero-img:hover {
    transform: translateY(-4px);
}

/* --- MISSION & PASSION --- */
.section-row {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.box {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: center; 
    text-align: center;
    gap: 20px;
}

.card {
    background: #F3F3F3;
    padding: 30px 40px;
    border-radius: 30px;
    width: 80%;
    max-width: 500px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2A2A2A;
    border: 1px solid #191A23;
    box-shadow: 0px 5px 0px #191A23;
}

/* --- TOOLS SECTION --- */
.simple-tools-section {
    background-color: #191A23; 
    border-radius: 45px;
    margin-top: 80px;
    padding: 60px 100px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Space Grotesk', Arial, Helvetica, sans-serif;
}

.simple-tools-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.simple-tools-column {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.simple-tools-title {
    color: var(--darker-accent);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.tools-grid img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
}

.tools-grid figcaption {
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.simple-tools-content { color: #FFFFFF; }

.simple-tools-item {
    line-height: 1.5;
    margin-bottom: 15px;
    color: #FFFFFF;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.simple-tools-item:hover {
    color: #b4ff00;
    font-weight: bold;
}

.simple-tools-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* ================== MEDIA QUERIES ================== */

/* MOBILE */
@media (max-width: 480px) {
    .about-wrapper { width: 95%; padding-bottom: 50px; }
    .title { font-size: 24px; margin-top: 25px; }
    .hero-section { flex-direction: column; padding: 15px 20px; gap: 25px; text-align: center; }
    .hero-text { width: 100%; font-size: 16px; order: 2; }
    .hero-img { width: 80%; order: 1; }
    .hero-img img { max-height: 220px; }
    .section-row { flex-direction: column; gap: 40px; margin-top: 40px; }
    .box { width: 100%; }
    .card { padding: 20px; min-height: auto; height: auto; font-size: 15px; }
    .learn-btn-card { position: relative; bottom: auto; left: auto; margin-top: 15px; display: inline-flex; }
    .tools-grid { grid-template-columns: repeat(1, 1fr); gap: 15px; }
}

/* TABLET */
@media (max-width: 768px) {
    .about-wrapper { width: 90%; padding-bottom: 60px; }
    .title { font-size: 28px; }
    .hero-section { padding: 25px 30px; gap: 30px; }
    .hero-text { width: 90%; font-size: 16px; }
    .hero-img { width: 90%; }
    .hero-img img { max-height: 280px; }
    .section-row { gap: 35px; }
    .card { width: 95%; padding: 25px 30px; font-size: 16px; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* SMALL DESKTOP / LARGE TABLET */
@media (max-width: 1024px) {
    .about-wrapper { width: 88%; }
    .hero-section { gap: 40px; padding: 30px 30px; }
    .hero-text { width: 45%; }
    .hero-img { width: 45%; }
    .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
}

/* LARGE DESKTOP */
@media (min-width: 1440px) {
    .about-wrapper { width: 75%; }
    .title { font-size: 38px; }
    .hero-section { padding: 50px 50px; }
    .hero-text { font-size: 18px; }
    .hero-img img { max-height: 380px; }
    .simple-tools-section { padding: 80px 120px; }
    .tools-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
}

/* FLEX & IMAGE SCALING */
img { max-width: 100%; height: auto; }
.hero-section,
.section-row,
.simple-tools-container { flex-wrap: wrap; }

/* FLUID FONT SCALING */
html { font-size: 16px; }
@media (max-width: 1200px) { html { font-size: 15px; } }
@media (max-width: 992px) { html { font-size: 14px; } }
@media (max-width: 768px) { html { font-size: 13px; } }
@media (max-width: 480px) { html { font-size: 12px; } }
