/* CSS REUSED AND ADAPTED FROM PREVIOUS PROMPT */
:root {
    --primary: #2563eb;
    --secondary: #1e293b;
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #334155;
    --accent: #38bdf8;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
}

/* HEADER & FOOTER STYLES */
header {
    background: var(--card);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

header img {
    max-height: 80px; /* Adjust based on your .png size */
    width: auto;
}

footer {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

/* TAB NAVIGATION */
.tab-container {
    max-width: 900px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.tab-button {
    padding: 12px 20px;
    cursor: pointer;
    border: none;
    background: #e2e8f0;
    color: var(--secondary);
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    transition: 0.3s;
}

.tab-button.active {
    background: var(--primary);
    color: white;
}

/* CONTENT SECTIONS */
.tab-content {
    display: none;
    max-width: 800px;
    margin: 0 auto 40px auto;
    background: var(--card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.responsive-img {
  max-width: 100%;
  height: auto; /* Maintains the aspect ratio */
  display: block; /* Removes the tiny gap at the bottom of the image */
}

.container {
  width: 80%; /* Or whatever width you want the image to fit into */
  margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* REUSED MINDSET STYLES */
.step {
    margin-bottom: 25px;
    padding: 20px;
    border-left: 4px solid var(--primary);
    background: #f1f5f9;
    border-radius: 0 8px 8px 0;
}

.step h3 { margin: 0 0 10px 0; color: var(--primary); }

.why-it-works {
    background: var(--secondary);
    color: #f1f5f9;
    padding: 30px;
    border-radius: 8px;
}

.why-it-works h2 { color: var(--accent); margin-top: 0; }

ul { list-style: none; padding: 0; }
ul li { margin-bottom: 10px; padding-left: 25px; position: relative; }
ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

@media (max-width: 600px) {
    .tab-button { flex: 1 1 40%; border-radius: 4px; }
    .tab-content { padding: 20px; }
}

