/* Browser Reset & Normalization */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

:root {
    /* Color System - Dark Mode */
    --bg-primary: #000;
    --bg-card: #ffffff;
    --text-primary: #000000;
    --text-black: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.2);
    
    /* Typography Scale */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-2xl: 24px;
    --font-3xl: 32px;
    --font-4xl: 48px;
    --font-5xl: 64px;
    --font-6xl: 96px;
    --font-7xl: 120px;
    --font-8xl: 140px;
    
    /* Spacing Scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
    --space-2xl: 80px;
    --space-3xl: 120px;
}

html,
body {
    background-color: #000;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 14px;
    /* Smooth scrolling */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    height: 100%;
    /* Smooth scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 400px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 1280px) {
    html {
        font-size: -webkit-calc(1.25vw - 2px);
        font-size: -moz-calc(1.25vw - 2px);
        font-size: calc(1.25vw - 2px);
    }
}

@media (min-width: 1440px) {
    html {
        font-size: -webkit-calc(0.416667vw + 10px);
        font-size: -moz-calc(0.416667vw + 10px);
        font-size: calc(0.416667vw + 10px);
    }
}

@media (min-width: 1920px) {
    html {
        font-size: -webkit-calc(1.25vw - 6px);
        font-size: -moz-calc(1.25vw - 6px);
        font-size: calc(1.25vw - 6px);
    }
}

@media (min-width: 2400px) {
    html {
        font-size: 24px;
    }
}

/* Helvetica Now Display Font Face */
@font-face {
    font-family: HelveticaNowDisplay;
    src: local('Helvetica Now Display Regular'),
         local('HelveticaNowDisplay-Regular');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: HelveticaNowDisplay;
    src: local('Helvetica Now Display Light'),
         local('HelveticaNowDisplay-Light');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: HelveticaNowDisplay;
    src: local('Helvetica Now Display Medium'),
         local('HelveticaNowDisplay-Medium');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: HelveticaNowDisplay;
    src: local('Helvetica Now Display Bold'),
         local('HelveticaNowDisplay-Bold');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: HelveticaNowDisplay;
    src: local('Helvetica Now Display ExtraBold'),
         local('HelveticaNowDisplay-ExtraBold');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: HelveticaNowDisplay;
    src: local('Helvetica Now Display Black'),
         local('HelveticaNowDisplay-Black');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: HelveticaNowDisplay, 'Helvetica Neue', Helvetica, Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', sans-serif;
    background-color: #000;
    color: var(--text-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-rendering: optimizeLegibility;
    font-weight: 400;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(0, 255, 206, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(0, 255, 206, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(5px, 0.5vw, 7.5px) 0 clamp(10px, 1vw, 15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-black);
    text-decoration: none;
    font-size: var(--font-base);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
}

.nav-link:hover {
    color: #00ffce;
}

.nav-link.active {
    color: #00ffce;
}

.nav-apply {
    padding: 8px 20px;
    border: 1px solid #00ffce;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-apply:hover {
    background-color: #00ffce;
    color: #000;
}

@media screen and (max-width: 768px) {
    .nav {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .nav-right {
        gap: 20px;
    }
    
    .nav-link {
        font-size: var(--font-sm);
    }
    
    .nav-apply {
        padding: 6px 16px;
    }
}

@media screen and (max-width: 480px) {
    .nav-right {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .nav-apply {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    padding-top: 72px;
    padding-bottom: 72px;
    text-align: left;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
    box-sizing: border-box;
}

.hero .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 clamp(10px, 1vw, 15px) 0 clamp(5px, 0.5vw, 7.5px);
    height: calc(100vh - 144px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('india-map.svg');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    -webkit-filter: drop-shadow(0 0 20px rgba(0, 255, 206, 0.3)) drop-shadow(0 0 40px rgba(0, 255, 206, 0.15));
    filter: drop-shadow(0 0 20px rgba(0, 255, 206, 0.3)) drop-shadow(0 0 40px rgba(0, 255, 206, 0.15));
    -webkit-animation: heartbeat 1.5s ease-in-out infinite;
    -moz-animation: heartbeat 1.5s ease-in-out infinite;
    -o-animation: heartbeat 1.5s ease-in-out infinite;
    animation: heartbeat 1.5s ease-in-out infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: opacity;
    content-visibility: auto;
}

.thesis-hero {
    position: relative;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-top: 144px !important;
    padding-bottom: 80px;
    margin-top: 0;
    display: block;
}

.thesis-hero::before {
    display: none;
}

.join-hero::before {
    display: none;
}

.join-hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-content {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.join-hero .hero-title {
    text-align: center;
    margin-bottom: 0;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(-40px);
    animation: slideDown 1s ease-out 0.3s forwards;
}

.join-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.join-input {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--text-black);
    font-size: clamp(14px, 1.2vw, 15px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.join-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.join-input:focus {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.join-submit {
    padding: 14px 36px;
    background-color: transparent;
    color: rgba(0, 255, 206, 0.8);
    border: 1px solid rgba(0, 255, 206, 0.3);
    border-radius: 0;
    font-size: clamp(11px, 1vw, 12px);
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    outline: none;
}

.join-submit:hover {
    color: rgba(0, 255, 206, 1);
    border-color: rgba(0, 255, 206, 0.5);
}

.join-submit:active {
    opacity: 0.7;
}

.join-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-message {
    font-size: clamp(12px, 1vw, 13px);
    font-weight: 300;
    text-align: center;
    margin-top: 8px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.form-message.success {
    color: rgba(0, 255, 206, 0.8);
}

.form-message.error {
    color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
    .join-content {
        max-width: 100%;
        gap: 40px;
    }
    
    .join-hero .hero-title {
        font-size: clamp(42px, 12vw, 72px);
        letter-spacing: -2px;
    }
    
    .join-input {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .join-submit {
        padding: 16px 40px;
        font-size: 13px;
        width: 100%;
        align-self: center;
    }
}

@media screen and (max-width: 480px) {
    .join-content {
        gap: 24px;
    }
    
    .join-hero .hero-title {
        font-size: clamp(24px, 10vw, 40px);
        letter-spacing: -0.6px;
    }
    
    .join-input {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .join-submit {
        padding: 12px 32px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }
}


.thesis-hero .container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 clamp(20px, 2vw, 40px);
    padding-top: 0;
    margin-top: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
    height: auto !important;
    box-sizing: border-box;
}

.thesis-hero .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: visible !important;
    height: auto !important;
}

.thesis-hero .hero-left {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin: 0;
    padding-top: 0;
    display: block !important;
    visibility: visible !important;
    overflow: visible !important;
}

.thesis-hero .hero-title {
    padding-top: 0 !important;
    margin-top: 0;
    margin-bottom: 48px;
    text-align: left;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 1s ease-out 0.3s forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Heartbeat pulse animation */
@-webkit-keyframes heartbeat {
    0% {
        opacity: 0.15;
    }
    14% {
        opacity: 0.2;
    }
    28% {
        opacity: 0.15;
    }
    42% {
        opacity: 0.2;
    }
    70% {
        opacity: 0.15;
    }
    100% {
        opacity: 0.15;
    }
}

@-moz-keyframes heartbeat {
    0% {
        opacity: 0.15;
    }
    14% {
        opacity: 0.2;
    }
    28% {
        opacity: 0.15;
    }
    42% {
        opacity: 0.2;
    }
    70% {
        opacity: 0.15;
    }
    100% {
        opacity: 0.15;
    }
}

@keyframes heartbeat {
    0% {
        opacity: 0.15;
    }
    14% {
        opacity: 0.2;
    }
    28% {
        opacity: 0.15;
    }
    42% {
        opacity: 0.2;
    }
    70% {
        opacity: 0.15;
    }
    100% {
        opacity: 0.15;
    }
}

.hero-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
}

.hero-title {
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -2.5px;
    color: var(--text-black);
    max-width: 100%;
    width: auto;
    text-align: left;
    margin: 0;
    padding-top: 40px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

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

.hero-text-cyan {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
    color: #00ffce;
}

.hero-text-cyan:hover {
    transform: translateX(5px);
}

.hero-button {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background-color: transparent;
    color: #00ffce;
    border: 2px solid #00ffce;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    cursor: pointer;
}

.hero-button:hover {
    background-color: #00ffce;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 206, 0.3);
}

.hero-text-red {
    color: #ff0000;
}

.hero-content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0;
    margin-top: 0;
}

.hero-left {
    width: 100%;
    max-width: 600px;
}


.hero-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-body-content {
    width: 100%;
    max-width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-body-text {
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-gray);
    margin: 0 0 28px 0;
    padding: 0;
    text-align: left;
    display: block;
}

.thesis-hero .hero-body-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
    max-width: 100%;
    display: block !important;
    visibility: visible !important;
    color: var(--text-gray) !important;
}

.hero-body-text:last-child {
    margin-bottom: 0;
}


/* Section Styles */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}

#misconceptions {
    background-color: #262626;
}

.thesis-text {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 24px 0;
    padding: 0;
}

.thesis-text:last-child {
    margin-bottom: 0;
}

.section-left .thesis-text,
.section-right .thesis-text {
    max-width: 100%;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 clamp(10px, 1vw, 15px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.section-left {
    flex: 1;
}

.section-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--text-black);
    margin: 0 0 16px 0;
    padding: 0;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--text-gray);
    margin: 0 0 40px 0;
    padding: 0;
}

.section-body-heading {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.8px;
    color: var(--text-black);
    margin: 0 0 16px 0;
    padding: 0;
    max-width: 500px;
    text-align: left;
}

.section-body {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
    padding: 0;
    max-width: 500px;
    text-align: left;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero .container {
        padding: 0 20px;
        overflow-x: hidden;
    }
    
    .hero::before {
        top: 72px;
        background-size: cover;
        background-position: center center;
    }

    .thesis-hero::before {
        top: 72px;
        background-position: right center;
        background-size: 70% auto;
    }

    .thesis-hero .container {
        padding: 0 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .thesis-hero .hero-left {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .thesis-hero .hero-title {
        padding-top: 32px;
        margin-bottom: 32px;
    }

    .thesis-hero .hero-body-text {
        font-size: clamp(13px, 1.8vw, 15px);
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .hero {
        padding: 0;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: clamp(38px, 9vw, 56px);
        text-align: left;
        max-width: 100%;
        letter-spacing: -2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-button {
        margin-top: 30px;
        padding: 14px 32px;
        font-size: 14px;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-body-content {
        max-width: 100%;
    }

    .hero-title {
        padding-top: 32px;
    }

    .hero-body-text {
        font-size: clamp(13px, 1.8vw, 15px);
        margin-bottom: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .thesis-content {
        max-width: 100%;
    }

    .thesis-text {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .section-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .section-right {
        width: 100%;
        align-items: flex-start;
    }

    .section-title {
        font-size: clamp(20px, 4vw, 28px);
        letter-spacing: -0.8px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: clamp(14px, 2.5vw, 18px);
        letter-spacing: -0.4px;
        margin-bottom: 0;
    }

    .section-body-heading {
        font-size: clamp(18px, 4vw, 24px);
        text-align: left;
        max-width: 100%;
        margin-bottom: 12px;
    }

    .section-body {
        font-size: clamp(16px, 2vw, 18px);
        text-align: left;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero .container {
        padding: 0 20px;
        overflow-x: hidden;
    }
    
    .hero::before {
        top: 60px;
        background-size: cover;
        background-position: center center;
    }

    .thesis-hero::before {
        top: 60px;
        background-position: right center;
        background-size: 60% auto;
    }

    .thesis-hero .container {
        padding: 0 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .thesis-hero .hero-left {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .thesis-hero .hero-title {
        padding-top: 24px;
        margin-bottom: 28px;
    }

    .thesis-hero .hero-body-text {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .hero {
        padding: 0;
        overflow-x: hidden;
    }

    .hero-label {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(34px, 11vw, 44px);
        letter-spacing: -1.8px;
        text-align: left;
        max-width: 100%;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-button {
        margin-top: 24px;
        padding: 12px 28px;
        font-size: 13px;
    }

    .hero-content {
        gap: 32px;
    }

    .hero-title {
        padding-top: 24px;
    }

    .hero-body-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .section {
        padding: 40px 0;
    }

    .thesis-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .section-content {
        gap: 32px;
    }

    .section-title {
        font-size: clamp(18px, 5vw, 24px);
        letter-spacing: -0.6px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: clamp(13px, 2vw, 16px);
        letter-spacing: -0.3px;
        margin-bottom: 0;
    }

    .section-body-heading {
        font-size: clamp(16px, 3vw, 20px);
        text-align: left;
        margin-bottom: 10px;
    }

    .section-body {
        font-size: 16px;
        text-align: left;
    }
}

@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 32px;
        text-align: left;
        max-width: 100%;
    }
}
