/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --secondary-color: #00d4ff;
    --dark-bg: #0a0e1a;
    --darker-bg: #05070f;
    --light-text: #ffffff;
    --gray-text: #b0b8c8;
    --accent-gold: #ffd700;
    --success-green: #00ff88;
    
    /* Typography */
    --font-primary: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--light-text);
    letter-spacing: -1px;
}

.logo-tagline {
    font-weight: 300;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu a:hover {
    color: var(--light-text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu .cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-menu .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.nav-menu .cta-button::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(0, 102, 255, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom, rgba(0, 212, 255, 0.1), transparent 50%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #b0b8c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 22px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-text);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ========================================
   Section Common Styles
   ======================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.large-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.highlight-text {
    color: var(--light-text);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.6;
}

/* ========================================
   Mission Section
   ======================================== */
.mission-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-statement {
    margin-bottom: 50px;
}

.mission-question {
    background: rgba(0, 102, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
}

.mission-question blockquote {
    position: relative;
}

.mission-question i {
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 24px;
}

.fa-quote-left {
    margin-bottom: 20px;
}

.fa-quote-right {
    margin-top: 20px;
    float: right;
}

.mission-question p {
    font-size: 24px;
    line-height: 1.7;
    color: var(--light-text);
    font-weight: 500;
    font-style: italic;
    padding: 0 20px;
}

.mission-answer p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
}

/* ========================================
   Vision Section
   ======================================== */
.vision-section {
    background: var(--dark-bg);
}

.vision-intro {
    text-align: center;
    margin-bottom: 60px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.company-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.company-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(0, 102, 255, 0.05);
}

.company-card.highlight {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-color: var(--primary-color);
}

.company-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.company-card.highlight .company-name {
    color: var(--accent-gold);
}

.company-start {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.company-impact {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
}

.vision-statement {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.vision-statement p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
}

.vision-future {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 70px 0;
}

.vision-item {
    text-align: center;
    padding: 30px;
}

.vision-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.vision-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
}

.vision-commitment {
    text-align: center;
    margin-top: 70px;
}

/* ========================================
   Achievements Section
   ======================================== */
.achievements-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.achievements-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.achievements-intro p {
    margin-bottom: 20px;
    font-size: 18px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 102, 255, 0.05);
    border-color: var(--primary-color);
}

.achievement-icon {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.achievement-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 15px;
    color: var(--gray-text);
    font-weight: 500;
}

.achievements-honesty {
    max-width: 900px;
    margin: 0 auto;
}

.honesty-box {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 50px;
    border-radius: 12px;
}

.honesty-box p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
}

.honesty-box .emphasis {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 40px;
}

/* ========================================
   Roadmap Section
   ======================================== */
.roadmap-section {
    background: var(--dark-bg);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
}

.timeline-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid var(--primary-color);
    display: block;
    position: relative;
    z-index: 1;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-dot.active {
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.timeline-dot.active::after {
    background: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
    }
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-phase {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.timeline-revenue {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-text);
}

.timeline-milestones {
    list-style: none;
}

.timeline-milestones li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.7;
    color: var(--gray-text);
}

.timeline-milestones li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
}

/* ========================================
   Roles Section
   ======================================== */
.roles-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.roles-intro {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.role-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 45px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.role-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 102, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.2);
}

.role-icon {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.role-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light-text);
}

.role-subtitle {
    font-size: 13px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-list {
    list-style: none;
}

.role-list li {
    padding-left: 25px;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.7;
    color: var(--gray-text);
    font-size: 15px;
}

.role-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ========================================
   Philosophy Section
   ======================================== */
.philosophy-section {
    background: var(--dark-bg);
}

.philosophy-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 17px;
    color: var(--gray-text);
    line-height: 1.8;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-block {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary-color);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 2;
    color: var(--gray-text);
    font-style: italic;
}

/* ========================================
   People Section
   ======================================== */
.people-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.people-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.people-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 45px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.people-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 102, 255, 0.05);
    border-color: var(--primary-color);
}

.people-icon {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.people-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
    line-height: 1.4;
}

.people-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.05));
    padding: 100px 0;
}

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

.contact-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-description {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-cta-text {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 50px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--light-text);
}

.contact-method:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-method i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-method span {
    font-size: 16px;
    font-weight: 500;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    color: var(--gray-text);
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .companies-grid,
    .vision-future,
    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        padding: 30px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .companies-grid,
    .vision-future,
    .achievements-grid,
    .roles-grid,
    .people-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        width: 40px;
        height: 40px;
    }
    
    .timeline-dot::after {
        width: 16px;
        height: 16px;
    }
    
    .timeline-item {
        gap: 30px;
    }
    
    .mission-question p {
        font-size: 20px;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .role-card,
    .people-card,
    .achievement-card {
        padding: 30px;
    }
    
    .honesty-box,
    .philosophy-block {
        padding: 30px;
    }
}
