@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #7f7f7f 25%, #5a5a5a 50%, #2e2e2e 75%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
}

/* Container Override */
.container {
    max-width: 1260px;
}

/* Header and Hero Section Wrapper */
.header-hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    mix-blend-mode: luminosity;
    opacity: 0.3;
}

.about-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Luminosity Effect Overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #bababa;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* Header Styles */
.header {
    padding: 90px 0 0;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    background-color: transparent;
}

.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-container {
    width: 133px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-image {
    width: 85px;
    height: auto;
    display: block;
    transition: opacity 0.3s;
}

.logo-image-hover {
    width: 133px;
    height: auto;
    display: block;
    position: absolute;
    top: -38px;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.navbar-brand:hover .logo-image {
    opacity: 0;
}

.navbar-brand:hover .logo-image-hover {
    opacity: 1;
}

.navbar-nav {
    gap: 44px;
}

.navbar-nav .nav-link {
    color: #333333 !important;
    text-transform: lowercase;
    margin: 0;
    font-size: 28px;
    transition: color 0.3s;
    padding: 0 !important;
    line-height: 1;
}

.navbar-nav .nav-link:hover {
    color: #333333 !important;
    border-bottom: 1px solid #333333;
}

.navbar-nav .nav-link.active {
    text-decoration: none;
    color: #333333 !important;
    border-bottom: 1px solid #333333;
}

.navbar-toggler {
    border-color: #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.speech-bubble-top {
    position: absolute;
    top: -14px;
    right: 0;
    background-color: #ffffff;
    padding: 8px 16px;
    color: #1a1a1a;
    border-radius: 100px;
    font-size: 24px;
    font-weight: 500;
    z-index: 10;
    transform: rotate(3.3deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speech-bubble-top p {
    margin: 0;
    padding: 0;
}

.speech-bubble-bottom {
    position: absolute;
    bottom: -26px;
    right: 218px;
    background-color: #ffffff;
    padding: 8px 16px;
    color: #1a1a1a;
    border-radius: 100px;
    font-size: 24px;
    font-weight: 500;
    z-index: 10;
    transform: rotate(-3.3deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.speech-bubble-bottom p {
    margin: 0;
    padding: 0;
}

.hero-headline {
    margin: 30px 0;
    line-height: 1.2;
    display: block;
    text-align: left;
    position: relative;
    margin-bottom: 80px;
}

.gradient-glass-blob {
    position: absolute;
    top: 8px;
    left: 186px;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    max-width: 400px;
    height: auto;
}

.hero-headline-part1 {
    font-size: 100px;
    font-weight: 400;
    color: #0f0f0f;
    display: block;
    line-height: 1;
    letter-spacing: -3px;
}

.hero-headline-part2 {
    font-size: 100px;
    font-weight: 600;
    color: #0f0f0f;
    display: block;
    line-height: 1;
    letter-spacing: -3px;
}

.cta-button {
    background-color: #d6ff01;
    color: #000000;
    padding: 15px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase;
    border: 1px solid #b8e600;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    transition:
        all 0.6s,
        box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
}

.cta-button:hover {
    background-color: #d6ff01;
    border: 1px solid #a8d600;
    box-shadow:
        inset 3px 3px 6px rgba(0, 0, 0, 0.2),
        inset -2px -2px 4px rgba(255, 255, 255, 0.3),
        2px 2px 6px rgba(0, 0, 0, 0.3);
    color: #000000;
    transform: translateY(1px);
}

/* Services Section */
.services-section {
    padding: 106px 0;
    background-color: #0e0e0e;
    border-radius: 40px;
    position: relative;
    top: -40px;
    z-index: 3;
}

.section-title {
    font-size: 70px;
    font-weight: 400;
    color: #d6ff01;
    margin-bottom: 49px;
    text-transform: uppercase;
}

.service-item {
    padding: 40px 0;
    border-bottom: 1px solid #333333;
}

.service-item .row {
    align-items: flex-start;
}

.service-item:last-child {
    border-bottom: none;
}

.service-title {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
}

.keywords {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword-tag {
    border: 1px solid #e5ff9f;
    color: #e5ff9f;
    line-height: 1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 20px;
    display: inline-block;
    background-color: transparent;
    font-weight: 300;
}

.service-description {
    color: #ffffff;
    font-size: 30px;
    margin-top: 0;
    line-height: 1.3;
    text-align: left;
    margin-top: 20px;
    font-weight: 200;
}

/* Contact Section */
.contact-section {
    padding: 178px 0 366px;
}

.contact-info-panel {
    background-color: #0e0e0e;
    padding: 80px 60px;
    border-radius: 40px;
    height: 100%;
    position: relative;
    min-height: 588px;
}

.contact-title {
    font-size: 80px;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    max-width: 405px;
}

.contact-text {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.8;
    max-width: 405px;
}

.contact-form-panel {
    background-color: #ffffff;
    padding: 58px 44px;
    border-radius: 40px;
    height: 100%;
    position: absolute;
    width: auto;
    top: -56px;
    right: 44px;
    min-height: 700px;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 12px 0;
    font-size: 16px;
    color: #1a1a1a;
    background-color: transparent;
    width: 100%;
    resize: none;
    margin-bottom: 20px;
}

.contact-form textarea.form-control {
    min-height: 80px;
    padding-top: 12px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-bottom-color: #999999;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #999999;
    font-weight: 300;
}

.contact-form .mb-3,
.contact-form .mb-5 {
    position: relative;
}

.required-asterisk {
    color: #ff0000;
    position: absolute;
    right: 0;
    top: 12px;
    font-size: 16px;
    pointer-events: none;
    line-height: 1;
}

.attachment-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 4px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-weight: 300;
}

.attachment-link:hover {
    color: #1a1a1a;
    border-bottom-color: #999999;
}

.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    margin-top: 0.3em;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.form-check-input:checked {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

.form-check-label {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    margin-left: 8px;
}

.submit-btn {
    background-color: #e0e0e0;
    color: #666666;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #d0d0d0;
    color: #666666;
}

/* Footer */
.footer {
    padding: 60px 0 74px;
}

.footer .cta-button {
    padding: 15px 40px;
    margin-bottom: 20px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -1px;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-contact-item {
    text-align: center;
}

.footer-contact-item a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 28px;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-contact-item a:hover {
    color: #bfff00;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-tag {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    line-height: 1;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: lowercase;
    background-color: transparent;
}

.social-tag:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.footer-logo {
    margin-top: 30px;
}

.footer-logo-image {
    max-width: 133px;
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Work Page Styles */
.work-header-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}


.work-header-section .navbar-nav .nav-link {
    color: #ffffff !important;
}

.work-header-section .navbar-nav .nav-link:hover {
    color: #d6ff01 !important;
    border-bottom: 1px solid #d6ff01;
}

.work-header-section .navbar-nav .nav-link.active {
    color: #ffffff !important;
    border-bottom: 1px solid #ffffff;
}

.work-header-section .navbar-toggler {
    border-color: #ffffff;
}

.work-content-section {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 45px 0;
    position: relative;
    z-index: 3;
}

.work-speech-bubble {
    background-color: #ffffff;
    color: #000000;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    position: absolute;
    top: 100px;
    right: 10%;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.work-speech-bubble::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffffff;
}

.work-description-box {
    background-color: #0e0e0e;
    border: 1px solid #333333;
    position: relative;
    font-weight: 300;
    color: #ffffff;
    padding: 30px 28px;
    border-radius: 12px;
    font-size: 24px;
    line-height: 1.8;
    letter-spacing: -1.3px;
    width: 100%;
    text-align: left;
}

.work-description-box .speech-bubble-top {
    position: absolute;
    top: -84px;
}

/* Services Page Styles */
.services-page-section {
    min-height: 100vh;
    position: relative;
}

.services-page-section .header {
    background-color: #0e0e0e;
}

.services-page-section .navbar-nav .nav-link {
    color: #ffffff !important;
}

.services-page-section .navbar-nav .nav-link:hover {
    color: #d6ff01 !important;
    border-bottom: 1px solid #d6ff01;
}

.services-page-section .navbar-nav .nav-link.active {
    color: #ffffff !important;
    border-bottom: 1px solid #ffffff;
}

.services-page-section .navbar-toggler {
    border-color: #ffffff;
}

.services-page-section .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.services-main-section {
    padding: 80px 0;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background-color: #0e0e0e;
    position: relative;
    z-index: 1;
}

.services-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.services-graphic-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* About Page Styles */
.about-hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    z-index: 3;
}

.about-hero-text {
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 75px;
    padding: 23px 0;
    border-radius: 42px;
    position: relative;
}

.about-hero-text-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 42px;
    filter: blur(14.8px);
    z-index: 0;
}

.about-hero-text p {
    position: relative;
    z-index: 1;
    margin: 0;
}

.about-hero-text strong {
    font-weight: 700;
}

.about-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-tag {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 300;
    display: inline-block;
}

/* WE ARE Section */
.we-are-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.we-are-sentence {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
}

.we-are-item {
    padding: 30px 60px;
    border-radius: 0;
    font-size: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

.we-are-logo {
    height: 24px;
    width: auto;
    display: block;
}

.we-are-dark {
    background-color: #2a2a2a;
    color: #ffffff;
}

.we-are-light {
    background-color: #e0e0e0;
    color: #2a2a2a;
}

.we-are-accent {
    background-color: #d6ff01;
    color: #2a2a2a;
}

/* CLARITY Section */
.clarity-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.clarity-title {
    font-size: 70px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 50px;
    text-align: left;
}

.clarity-card {
    padding: 60px 20px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease;
    min-height: 500px;
    justify-content: flex-end;
}

.clarity-card-dark {
    background-color: #333333;
    color: #eeeeee;
}

.clarity-card-dark:hover {
    background-color: #3a3a3a;
}

.clarity-card-accent {
    background-color: #e5ff9f;
    color: #333333;
}

.clarity-card-accent:hover {
    background-color: #c5e600;
}

.clarity-card-light {
    background-color: #e0e0e0;
    color: #2a2a2a;
}

.clarity-card-light:hover {
    background-color: #d0d0d0;
}

.clarity-card-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.clarity-card-image-1 {
    top: 50px;
    right: -56px;
    width: 237px;
    height: 244px;
}

.clarity-card-image-2 {
    top: 50px;
    right: -56px;
    width: 256px;
    height: 256px;
}

.clarity-card-image-3 {
    top: 50px;
    right: -115px;
    width: 316px;
    height: 230px;
}

.clarity-card-image-4 {
    top: 50px;
    right: -56px;
    width: 202px;
    height: 205px;
}

.clarity-card:hover .clarity-card-image {
    transform: translateX(-20px);
}

.clarity-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.clarity-card-title {
    font-size: 36px;
    margin-bottom: 22px;
    letter-spacing: -1.4px;
    margin-top: 0;
    z-index: 2;
    position: relative;
    font-weight: 300;
}

.clarity-card-text {
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: -1.4px;
    margin: 0;
    z-index: 2;
    position: relative;
    font-weight: 300;
    min-height: 114px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.philosophy-title {
    font-size: 48px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 0;
}

.philosophy-subtitle {
    font-size: 24px;
    color: #2a2a2a;
    font-weight: 300;
    margin-bottom: 0;
}

.why-choose-title {
    font-size: 70px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 40px;
    text-align: left;
}

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

.philosophy-statement {
    font-size: 24px;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: 300;
}

.philosophy-bold {
    font-size: 32px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 30px;
}

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.philosophy-list li {
    font-size: 18px;
    color: #2a2a2a;
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 0;
}

.philosophy-list li strong {
    font-weight: 600;
}

/* About Page Header Styles */
.about-hero-section .navbar-nav .nav-link {
    color: #ffffff !important;
}

.about-hero-section .navbar-nav .nav-link:hover {
    color: #d6ff01 !important;
    border-bottom: 1px solid #d6ff01;
}

.about-hero-section .navbar-nav .nav-link.active {
    color: #ffffff !important;
    border-bottom: 1px solid #ffffff;
}

.about-hero-section .navbar-toggler {
    border-color: #ffffff;
}

.about-hero-section .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 36px;
    }

    .section-title {
        font-size: 48px;
    }

    .service-title {
        font-size: 24px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px;
    }

    .services-section,
    .contact-section {
        padding: 50px 0;
    }

    .header {
        padding: 20px 0;
    }

    .hero-section {
        align-items: flex-start;
    }

    .hero-headline-part1 {
        font-size: 60px;
    }

    .hero-headline-part2 {
        font-size: 60px;
    }
    .speech-bubble-top {
        position: relative;
        font-size: 16px;
        width: max-content;
        margin: 20px auto;
        top: 0;
        right: 0;
        transform: rotate(0deg);
    }
    .speech-bubble-bottom {
        position: relative;
        font-size: 16px;
        width: max-content;
        margin: 10px auto;
        bottom: 0;
        right: 0;
        transform: rotate(0deg);
    }
    .hero-headline {
        margin-bottom: 20px;
    }
    .gradient-glass-blob {
        top: 74px;
        left: 100px;
        max-width: 60px;
    }
    .service-item {
        padding: 20px 0;
    }
    .service-title {
        font-size: 24px;
    }
    .service-description {
        font-size: 16px;
    }
    .keywords {
        margin: 10px 0;
    }
    .contact-form-panel {
        position: relative;
        top: 0;
        right: 0;
        min-height: auto;
        width: 100%;
        padding: 20px;
    }
    .required-asterisk {
        display: none;
    }
    .attachment-link {
        font-size: 14px;
    }
    .form-check-label {
        font-size: 12px;
    }
    .submit-btn {
        font-size: 14px;
    }
    .footer-contact-row {
        gap: 20px;
    }
    .footer-contact-item a {
        font-size: 16px;
    }
    .social-tag {
        font-size: 16px;
    }
    .footer-logo-image {
        max-width: 100px;
    }
    .services-section {
        top: -20px;
    }
    .work-speech-bubble {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px auto;
        max-width: 90%;
    }
    .work-description-box {
        margin: 40px auto 0;
        padding: 30px 20px;
        font-size: 16px;
    }
    .about-hero-text {
        font-size: 18px;
        padding: 0 20px;
    }
    .about-tag {
        font-size: 14px;
        padding: 10px 20px;
    }
    .we-are-section {
        padding: 20px 0;
    }
    .we-are-sentence {
        flex-wrap: wrap;
    }
    .we-are-item {
        font-size: 16px;
        padding: 10px 20px;
        margin-bottom: 10px;
        height: 56px;
    }
    .clarity-title {
        font-size: 48px;
    }
    .why-choose-title {
        font-size: 48px;
    }
    .philosophy-title {
        font-size: 36px;
    }
    .philosophy-subtitle {
        font-size: 20px;
    }
    .philosophy-statement {
        font-size: 20px;
    }
    .philosophy-bold {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

