/* Import M PLUS Rounded 1c font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap');

:root {
    --primary-color: #187fc4;
    /* Blue */
    --secondary-color: #f0f8ff;
    /* Light blue/white */
    --accent-color: #f6ab00;
    /* Orange/Yellow */
    --text-color: #333;
    --bg-color: #fff;
    --font-main: 'M PLUS Rounded 1c', sans-serif;
    --header-height: 80px;
}

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

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: #fff;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: flex-end;
    /* Align text to bottom of logo */
    gap: 10px;
}

.logo img {
    height: 60px;
    /* Increased size for better visibility */
    width: auto;
}

.logo span {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s;
}


nav a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
nav .dropdown {
    position: relative;
}

nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    min-width: 220px;
    padding: 10px 0;
    margin-top: 0;
    padding-top: 15px;
    z-index: 1000;
}

/* Add invisible bridge between menu and dropdown */
nav .dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

nav .dropdown:hover .dropdown-menu {
    display: block;
}

nav .dropdown-menu li {
    list-style: none;
}

nav .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-size: 0.9rem;
}

nav .dropdown-menu a:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

/* Automatic External Link Icon (logic from common.css) */
a[href^="http"]:not([href*="arasaki.org"]):not(.nomark):after,
a[href^="//"]:not([href*="arasaki.org"]):not(.nomark):after {
    margin: 0 0 0 4px;
    font-family: "Font Awesome 5 Free";
    content: '\f35d';
    font-weight: 900;
    font-size: 0.8em;
    vertical-align: middle;
    display: inline-block;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    min-height: 240px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 120px;
    /* Offset for intro-text overlap */
    padding-left: 20px;
    padding-right: 20px;
}

.hero-home {
    min-height: 480px;
    padding-top: 60px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Minimal overlay for depth, far lighter than 0.5 */
}

/* Hero Content Wrapper */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    /* Horizontal layout for PC */
    align-items: center;
    /* Vertically center */
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    text-align: left;
    /* Align text left */
}

/* Hero Title (Left Side) */
.hero h1 {
    font-size: 2.2rem;
    /* Reduced font size */
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 0;
    padding-right: 40px;
    border-right: none;
    flex: 0 0 auto;
    text-align: left;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    /* Strong drop shadow for visibility without dimming bg */
}

/* Summary text inside hero (Right Side) */
.hero-summary {
    text-align: left;
    color: #fff;
    flex: 1;
    /* Take remaining space */
    border-left: 3px solid #fff;
    /* moved vertical line here */
    padding-left: 40px;
}

.hero-summary h2 {
    font-size: 1.8rem;
    /* Slightly larger */
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
    text-align: left;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-summary h2::after {
    display: none;
}

.hero-summary p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        /* Stack vertically on mobile */
        text-align: center;
        gap: 20px;
    }

    .hero h1 {
        font-size: 2rem;
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid #fff;
        /* Horizontal line on mobile */
        padding-bottom: 20px;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
        /* Full width */
    }

    .hero-summary {
        text-align: left;
        /* Keep summary left aligned or center? Usually center for mobile hero */
        text-align: justify;
        /* Or justify */
        width: 100%;
        border-left: none;
        /* Remove vertical line on mobile */
        padding-left: 0;
        /* Remove padding on mobile */
    }

    .hero-summary h2 {
        text-align: center;
    }
}

/* Intro Text Section (Re-added for Top Page) */
.intro-text {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    margin-top: -160px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Sections */
section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--text-color);
    margin: 10px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #e06030;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    padding: 40px 0;
    text-align: center;
    border-top: 5px solid #187fc4;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #187fc4;
}

footer p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    nav ul {
        display: none;
        /* Mobile menu to be implemented */
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.gap-20 {
    gap: 20px;
}

.gap-40 {
    gap: 40px;
}

.gap-50 {
    gap: 50px;
}

.gap-60 {
    gap: 60px;
}

.w-full {
    width: 100%;
}

.max-w-900 {
    max-width: 900px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.p-20 {
    padding: 20px;
}

.p-40 {
    padding: 40px;
}

.p-50 {
    padding: 50px;
}

.p-60-40 {
    padding: 60px 40px;
}

.rounded-lg {
    border-radius: 12px;
}

.rounded-md {
    border-radius: 8px;
}

.rounded-20 {
    border-radius: 20px;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bg-white {
    background-color: white;
}

.bg-gray-100 {
    background-color: #f5f5f5;
}

.text-white {
    color: white;
}

.line-height-loose {
    line-height: 1.8;
}

/* Color Utilities */
.bg-cyan {
    background-color: #00afcc;
}

.bg-green {
    background-color: #187fc4;
}

.bg-yellow {
    background-color: #f6ab00;
}

.bg-cyan-light {
    background-color: #e0f7fa;
}

.bg-green-light {
    background-color: #e8f5e9;
}

.bg-yellow-light {
    background-color: #fff3e0;
}

.bg-red-light {
    background-color: #ffebee;
}

.bg-teal {
    background-color: #187fc4;
}

.bg-blue-dark {
    background-color: #0288d1;
}

.bg-blue-darker {
    background-color: #0277bd;
}

.bg-green-dark {
    background-color: #2e7d32;
}

.bg-blue-light {
    background-color: #dbeafe;
}

.bg-teal-light {
    background-color: #e0f2f1;
}

.bg-alice-blue {
    background-color: #f0f8ff;
}

.bg-gray-lighter {
    background-color: #f9f9f9;
}

.bg-brown {
    background-color: #5d4037;
}

.bg-green-light-2 {
    background-color: #e8f5d5;
}

.bg-teal-light-2 {
    background-color: #d4e9e2;
}

.bg-salmon {
    background-color: #eb6153;
}

.text-salmon {
    color: #eb6153;
}

.bg-orange {
    background-color: #e65100;
}

.bg-pink-light {
    background-color: #fce4ec;
}

.bg-purple {
    background-color: #6a1b9a;
}

/* Gradients */
.bg-gradient-cyan {
    background: linear-gradient(135deg, #00a8cc 0%, #00c9e6 100%);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #187fc4 0%, #4da3df 100%);
}

/* Components */
.card-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    width: 300px;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-card-header {
    padding: 20px;
    color: white;
}

.feature-card-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.feature-card-header p {
    margin: 0;
    font-size: 0.95rem;
}

.feature-card-image {
    padding: 20px;
}

.feature-card-image img {
    width: 100%;
    max-width: 250px;
    margin: 10px 0;
}

.feature-card-body {
    padding: 20px;
    text-align: left;
}

.feature-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.download-cta {
    background-color: #f0f0f0;
    padding: 60px 20px;
    text-align: center;
    display: none;
    /* Temporarily hidden as per user request */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 60px;
    background: #eb6153;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(235, 97, 83, 0.3);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(235, 97, 83, 0.4);
    color: white;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(235, 97, 83, 0.3);
}

.responsive-iframe-container {
    text-align: center;
    margin-bottom: 40px;
}

.responsive-iframe {
    max-width: 100%;
    border-radius: 8px;
}

.flex-col-mobile {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.flex-1-min-300 {
    flex: 1;
    min-width: 300px;
}

.order-1-mobile {
    order: 1;
}

.order-2-mobile {
    order: 2;
}

/* Step Components */
.step-image {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.step-arrow {
    flex: 0 0 auto;
    margin: 0 10px;
    align-self: flex-start;
    margin-top: 55px;
}

.btn-gradient-cyan {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    background: linear-gradient(135deg, #00a8cc 0%, #00c9e6 100%);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
    transition: all 0.3s;
}

.btn-gradient-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
    color: white;
}

.btn-outline-blue {
    display: block;
    text-align: center;
    padding: 20px;
    background: white;
    color: #187fc4;
    border: 3px solid #187fc4;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-blue:hover {
    background: #187fc4;
    color: white;
}

.btn-outline-green {
    display: block;
    text-align: center;
    padding: 20px;
    background: white;
    color: #9cca45;
    border: 3px solid #9cca45;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-green:hover {
    background: #9cca45;
    color: white;
}

.btn-outline-pink {
    display: block;
    text-align: center;
    padding: 20px;
    background: white;
    color: #eb6d8e;
    border: 3px solid #eb6d8e;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-pink:hover {
    background: #eb6d8e;
    color: white;
}

.testimonial-bubble {
    position: relative;
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    max-width: 85%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-bubble-left::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #0288d1;
}

.testimonial-bubble-right::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #0277bd;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    color: #187fc4;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #187fc4;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.faq-question {
    padding: 20px 25px;
    background: #f8f8f8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-weight: bold;
    font-size: 1.05rem;
    color: #333;
}

.faq-question:hover {
    background: #e8f5e9;
}

.faq-question::before {
    content: 'Q.';
    color: #187fc4;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.faq-answer-content {
    padding: 25px;
    line-height: 1.9;
    color: #555;
}

.faq-answer-content::before {
    content: 'A.';
    color: #0288d1;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.contact-info {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info p {
    margin: 5px 0;
    line-height: 1.8;
}

/* Guidance Grid Styles */
.guidance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Default 4x1 */
    gap: 20px;
}

@media (max-width: 1024px) {
    .guidance-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on medium screens */
    }
}

@media (max-width: 600px) {
    .guidance-grid {
        grid-template-columns: 1fr;
        /* 1x4 on mobile */
    }
}

/* Interview Styles */
.interview-section {
    max-width: 900px;
    margin: 0 auto;
}

.comment-box {
    background: #fff9ed;
    border-left: 5px solid #f6ab00;
    padding: 30px;
    border-radius: 4px;
    margin: 40px 0;
}

.comment-box-title {
    font-weight: bold;
    color: #f6ab00;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    line-height: 1.4;
}

.comment-box-title i {
    font-size: 1.2rem;
}

.comment-box-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.comment-box-image {
    flex: 0 0 160px;
    width: 160px;
}

.comment-box-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.comment-box-text {
    flex: 1;
}

@media (max-width: 600px) {
    .comment-box-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comment-box-image {
        margin-bottom: 20px;
    }
}

.question-block {
    margin-top: 60px;
    margin-bottom: 60px;
}

.interview-q-card {
    display: flex;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.interview-q-num {
    background: #187fc4;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    flex: 0 0 160px;
}

.interview-q-body {
    background: #e3f0f9;
    padding: 30px 40px;
    flex: 1;
    display: flex;
    align-items: center;
}

.interview-q-body h2 {
    font-size: 1.4rem;
    color: #187fc4;
    line-height: 1.4;
    text-align: left;
    margin: 0;
    padding: 0;
}

.interview-q-body h2::after,
.interview-section h2::after,
.intro-text h2::after {
    display: none;
}

.interview-section h2,
.intro-text h2 {
    padding-bottom: 0;
}

.interview-a-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.interview-a-badge {
    background: #e3f0f9;
    color: #187fc4;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex: 0 0 60px;
    margin-top: 10px;
}

.interview-a-box {
    background: #e9ecef;
    padding: 35px 40px;
    border-radius: 20px;
    flex: 1;
}

.interview-a-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.interview-a-at {
    background: #187fc4;
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

.interview-a-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.interview-a-content {
    line-height: 1.8;
    color: #000;
    font-size: 1rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .interview-q-card {
        flex-direction: column;
    }

    .interview-q-num {
        flex: none;
        padding: 15px;
        font-size: 1.8rem;
    }

    .interview-q-body {
        padding: 20px;
    }

    .interview-q-body h2 {
        font-size: 1.3rem;
        text-align: center;
    }

    .interview-a-row {
        flex-direction: column;
        align-items: center;
    }

    .interview-a-badge {
        margin-top: 0;
    }

    .interview-a-box {
        padding: 25px 20px;
        width: 100%;
    }
}


.participants-list {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 100px;
}

.participants-list h3 {
    text-align: center;
    margin-bottom: 30px;
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.participant-item {
    font-size: 0.95rem;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Theme Green Overrides */
.theme-green .bg-teal {
    background-color: #9cca45 !important;
}

.theme-green .interview-q-num {
    background: #9cca45;
}

.theme-green .interview-q-body {
    background: #f4f9eb;
}

.theme-green .interview-q-body h2 {
    color: #9cca45;
}

.theme-green .interview-a-badge {
    background: #f4f9eb;
    color: #9cca45;
}

.theme-green .interview-a-at {
    background: #9cca45;
}

/* Theme Pink Overrides */
.theme-pink .bg-teal {
    background-color: #eb6d8e !important;
}

.theme-pink .interview-q-num {
    background: #eb6d8e;
}

.theme-pink .interview-q-body {
    background: #fef0f4;
}

.theme-pink .interview-q-body h2 {
    color: #eb6d8e;
}

.theme-pink .interview-a-badge {
    background: #fef0f4;
    color: #eb6d8e;
}

.theme-pink .interview-a-at {
    background: #eb6d8e;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Open state animation */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        transition: right 0.3s ease-in-out;
        z-index: 1500;
        padding-top: 80px;
        /* Space for header */
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        display: flex;
        /* Show UL on mobile when menu is active */
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
    }

    nav .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 10px;
        text-align: center;
        display: none;
        /* Keep hidden by default */
    }

    /* Make dropdowns visible on mobile - simplified approach: always show details or click to expand? 
       For simplicity, let's keep them always visible or make them toggleable. 
       Let's style them to look good inside the list. 
    */
    nav .dropdown-menu {
        display: block;
        /* Show sub-menus by default on mobile for easier navigation */
        padding-left: 0;
        border-top: 1px solid #eee;
        margin-top: 10px;
        padding-top: 10px;
    }

    nav .dropdown-menu li {
        margin-bottom: 10px;
    }

    nav li {
        width: 100%;
        text-align: center;
    }

    nav a {
        font-size: 1.1rem;
        display: block;
        padding: 10px;
    }
}

/* Mobile Responsive Styles for Content Experience Tab Section */
@media (max-width: 768px) {

    /* Tab buttons */
    #step2-experience .tab-btn {
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }

    /* Content area padding */
    #step2-experience .tab-content>div[style*="padding: 40px"] {
        padding: 20px !important;
    }

    /* Preview card with image */
    #step2-experience .tab-content>div>div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    #step2-experience .tab-content img[style*="width: 300px"] {
        width: 200px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    #step2-experience .tab-content div[style*="position: absolute"][style*="width: 120px"] {
        width: 90px !important;
        height: 90px !important;
        top: -10px !important;
        right: -10px !important;
        font-size: 0.8rem !important;
    }

    #step2-experience .tab-content div[style*="position: absolute"] div[style*="font-size: 1.3rem"],
    #step2-experience .tab-content div[style*="position: absolute"] div[style*="font-size: 1.1rem"],
    #step2-experience .tab-content div[style*="position: absolute"] div[style*="font-size: 1.5rem"] {
        font-size: 1rem !important;
    }

    /* Question cards grid - 3 columns to 1 column */
    #step2-experience div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Question cards padding */
    #step2-experience div[style*="grid-template-columns"]>div[style*="padding: 40px"] {
        padding: 25px 20px !important;
    }

    #step2-experience div[style*="grid-template-columns"]>div[style*="font-size: 1.8rem"] {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }

    /* Answer section - 2 columns to 1 column */
    #step2-experience div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    #step2-experience div[style*="grid-template-columns: 1fr 1fr"]>div[style*="padding: 30px"] {
        padding: 20px !important;
    }

    /* Answer cards size adjustment */
    #step2-experience div[style*="width: 200px"],
    #step2-experience div[style*="width: 180px"] {
        width: 150px !important;
        padding: 20px 15px !important;
    }

    /* Explanation section */
    #step2-experience div[style*="display: flex"][style*="gap: 40px"][style*="align-items: center"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    #step2-experience img[style*="width: 280px"] {
        width: 200px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* Secondary school content - 4 column images to 2 columns */
    #secondary-content div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* Table styling for horizontal scroll */
    #secondary-content table {
        min-width: 600px;
        /* Minimum width to ensure all columns are visible */
        width: 100%;
    }

    #secondary-content table th,
    #secondary-content table td {
        font-size: 0.8rem !important;
        padding: 8px !important;
        white-space: normal;
        /* Allow text wrapping in cells */
    }

    #secondary-content table div[style*="width: 30px"][style*="height: 30px"] {
        width: 25px !important;
        height: 25px !important;
        font-size: 0.85rem !important;
    }

    /* Reduce SVG arrow size in table headers */
    #secondary-content table svg[width="100"] {
        width: 60px !important;
    }

    /* Make badge span text smaller */
    #secondary-content table span[style*="font-weight: 500"] {
        font-size: 0.75rem !important;
    }

    /* Other worksheets grid - 2 columns to 1 column */
    #step2-experience div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Download button */
    #step2-experience a[style*="padding: 25px 60px"] {
        padding: 20px 30px !important;
        font-size: 1.1rem !important;
    }

    /* Header titles */
    #step2-experience h3[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
    }

    #step2-experience h3[style*="font-size: 1.8rem"] {
        font-size: 1.4rem !important;
    }

    #step2-experience h4[style*="font-size: 1.5rem"] {
        font-size: 1.2rem !important;
    }

    /* Question text */
    #step2-experience p[style*="font-size: 1.3rem"] {
        font-size: 1.1rem !important;
    }

    #step2-experience p[style*="font-size: 1.2rem"] {
        font-size: 1rem !important;
    }

    /* Step arrow - hide on mobile */
    .step-arrow {
        display: none !important;
    }

    /* Step images smaller on mobile */
    .step-image {
        width: 100px !important;
        height: 100px !important;
    }

    /* Intro text margin adjustment */
    .intro-text {
        margin-top: -80px !important;
        padding: 30px 20px !important;
    }
}
/* Training Material Cards */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.training-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.training-card__img-area {
    background: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.img-composite {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.img-main {
    flex: 1.2;
}

.img-main img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.img-subs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.img-subs img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.training-card__content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.training-card__tit {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

.training-card__tit span {
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
    color: #555;
}

.training-card__txt {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
    flex: 1;
    text-align: left;
}

.training-card__btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.2s;
}

.training-card__btn:hover {
    color: #fff;
    text-decoration: none;
}

.training-card__btn--standard {
    background-color: #00a17f;
}

.training-card__btn--standard:hover {
    background-color: #008468;
}

.training-card__btn--advanced {
    background-color: #f6ab00;
}

.training-card__btn--advanced:hover {
    background-color: #e09b00;
}

@media (max-width: 768px) {
    .training-grid {
        grid-template-columns: 1fr;
    }
}
