@font-face {
    font-family: "BumperStickerRegular";
    src: url('../fonts/BumperStickerRegular/font.woff2') format('woff2'), url('../fonts/BumperStickerRegular/font.woff') format('woff');
}

@font-face {
    font-family: "BumperStickerItalic";
    src: url('../fonts/BumperStickerItalic/font.woff2') format('woff2'), url('../fonts/BumperStickerItalic/font.woff') format('woff');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'BumperStickerRegular', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FFF7E8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.inner-page{
    min-height: 100vh;
    margin-bottom: -62px;
    padding-bottom: 62px;
    padding-top: 90px;
}
/* reset a styles*/
a {
    text-decoration: none;
    color: inherit;
}
/* Typography */
.contact-additional .fa{
    color: #FFF7E8;
}
.section-title {
    font-family: BumperStickerRegular;
    font-style: normal;
    font-weight: 400;
    font-size: 70px;
    line-height: 120%;
    /* identical to box height, or 84px */
    text-align: center;
    letter-spacing: -0.01em;

    color: #9E8D74;

}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #9E8D74;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #fee8c2;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #9E8D74 !important;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-family: BumperStickerRegular;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    /* identical to box height, or 21px */

    color: #FEE8C2;


    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
    position: relative;
}

.nav-link:hover {
    color: #FFD38D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD38D;
    transition: width 0.3s ease;
}

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

.wave {
    display: none !important;
    position: absolute;
    width: 100vw;
    height: 10vh;
    left: 0vw;
}

.has-wave {
    padding-top: 15vh !important;
    padding-bottom: 15vh !important;
    position: relative;
}

.wave-top {
    top: -2px;
}

.wave-bottom {
    bottom: -2px;
rotate(180 deg);
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vw;
    max-height: 100vh;
    background: url(../images/banner_bg.png) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-position: bottom;
}

/* Alternative approach - if you know the exact image dimensions, use this instead */
.hero-with-image-ratio {
    width: 100%;
    height: 56.25vw; /* 16:9 aspect ratio (9/16 * 100) */
    min-height: 400px;
    max-height: 100vh;
    background: url('../images/banner_bg.png') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
    padding-left: 10px;
    padding-top: 40vh;
    padding-bottom: 80px;
    position: relative;
}

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

.hero-title {
    margin-bottom: 0;
}

.title-small {
    display: block;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.title-large {
    display: block;
    font-size: 5rem;
    color: white;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    max-width: 500px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.character {
    position: absolute;
    border-radius: 50%;
}

.main-character {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #FF6347, #FFA500);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 3s ease-in-out infinite;
    z-index: 3;
}

.side-character-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #32CD32, #90EE90);
    top: 20%;
    left: 20%;
    animation: bounce 3s ease-in-out infinite 0.5s;
    z-index: 2;
}

.side-character-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #4169E1, #87CEEB);
    bottom: 20%;
    right: 20%;
    animation: bounce 3s ease-in-out infinite 1s;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-gem {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.gem-1 {
    background: #FFD700;
    top: 30%;
    right: 30%;
    animation-delay: 0s;
}

.gem-2 {
    background: #FF69B4;
    bottom: 40%;
    left: 25%;
    animation-delay: 1.5s;
}

.gem-3 {
    background: #00CED1;
    top: 70%;
    right: 50%;
    animation-delay: 3s;
}

/* My Nano World Section */
.nano-world {
    padding: 100px 0;
    background: #FFF7E8;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #9E8D74;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.nano-image {
    position: relative;
    overflow: hidden;
    border-radius: 60px;
}

.nano-image:hover {
    transform: translateZ(-150px);
}

.world-screenshot {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.nano-image:hover .world-screenshot {
    transform: scale(1.05);
}

.worlds-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.world-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.world-item:hover {
    transform: scale(1.02);
}

.world-item.large {
    grid-row: 1 / 3;
}

.world-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.world-1 {
    background: linear-gradient(135deg, #F4A460 0%, #DEB887 50%, #D2691E 100%);
    position: relative;
}

.world-1::before {
    content: '🏜️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 2;
}

.world-2 {
    background: linear-gradient(135deg, #9370DB 0%, #8A2BE2 50%, #4B0082 100%);
    position: relative;
}

.world-2::before {
    content: '💎';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    z-index: 2;
}

.world-3 {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #1E90FF 100%);
    position: relative;
}

.world-3::before {
    content: '☁️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    z-index: 2;
}

.world-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.world-item:hover .world-overlay {
    transform: translateY(0);
}

.world-overlay h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Stats Section */
.stats {
    position: relative;
}

.stats svg {
    display: block;
}
.luna-smile{
    background: url(../images/luna_smile.png) no-repeat 96% top;
    background-size: contain;
    width: 100%;
    height: 50%;
    position: absolute;
    top: -30%;
    right: 0;
}
/* Stats Section */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.fake-stats-container {
    margin: -5px 0;
    background: #99866d;
}

.stat-item {

    padding: 2rem 1rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-family: BumperStickerRegular;
    font-style: normal;
    font-weight: 400;
    font-size: 150px;
    line-height: 120%;
    /* or 180px */
    text-align: center;
    letter-spacing: -0.01em;

    color: #FFD38D;


}

.stat-label {

    font-family: BumperStickerRegular;
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    /* or 43px */
    text-align: center;
    letter-spacing: -0.01em;

    color: #FFD38D;


}

/* Careers Section */
.careers {
    padding: 100px 0;
}

/* Careers Section */
.careers .section-title {
    text-align: left;

}

.positions-list {
    max-width: 800px;
    margin: 0 auto;
}

.position-item {
    margin-left: 2.3rem;
    position: relative;
    padding: 1.5rem 0;
    border-bottom: 1px solid #8B4513;
    font-size: 1.1rem;
    color: #9E8D74;
    text-transform: uppercase;
    font-weight: 500;
    transition: padding-left 0.3s ease;
}

.position-item:hover {
    padding-left: 1rem;
}

.position-item:before {
    content: '';
    position: absolute;
    display: block;
    background-image: url('../images/star.png');
    background-size: cover;
    width: 25px;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    left: -35px;
    top: 40%;
}

.position-details {
    text-transform: none;
    font-family: BumperStickerRegular;
    font-style: normal;
    font-weight: 100;
    font-size: 14px;
    line-height: 120%;
    /* identical to box height, or 24px */
    text-align: center;
    letter-spacing: -0.01em;

    color: #9E8D74;

}

/* Tabs Section */
.tabs-section {
    padding: 100px 0;
    background: #E9DABF;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tab-button, .submit-btn {
    box-sizing: border-box;
    height: 110px;
    border: 1px solid #9E8D74;
    border-radius: 41px;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    flex: 1;
    margin: 0 0.25rem;


    font-family: BumperStickerRegular;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    /* or 29px */
    text-align: center;
    letter-spacing: -0.01em;

    color: #9E8D74;


}

.tab-button:hover {
    background: #f5f5f5;
}

.tab-button.active {
    background: white;
    color: #8B4513;
    position: relative;
    border-color: white;

}

.tab-button.active::after {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 31px solid white;
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -30px;
    z-index: 100;
}

.tab-arrow {
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tabs-content {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

.company-content {
}

.company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-symbol {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.company-name h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #8B4513;
    line-height: 1.2;
}

.company-subtitle {
    font-size: 0.9rem;
    color: #9E8D74;
}

.company-description h2 {
    font-size: 45px;
    padding-bottom: 10px;
}

.company-description img {
    display: inline-block;
    float: left;
    padding-right: 10px;
    padding-bottom: 10px;
}

.company-description {
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 170%;
    color: #9E8D74;
}

.company-visual {
    position: relative;
    height: 400px;
}
span.star{
}
span.star img{
}

.game-world-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #32CD32 0%, #228B22 50%, #006400 100%);
    overflow: hidden;
}

.world-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    background: #FFD700;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    background: #FF6347;
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    background: #4169E1;
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
}

.element-4 {
    width: 50px;
    height: 50px;
    background: #FF69B4;
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

/* Background Image Section */
.background-section {
    background:  linear-gradient(180deg, rgba(233, 218, 191, 1) 0%, rgba(247, 193, 95, 1) 100%);

}
/* Background Image Section */
.background-section img {
    background:  linear-gradient(180deg, rgba(233, 218, 191, 1) 0%, rgba(247, 193, 95, 1) 100%);
    display: block;
    width: 100%;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: #F7C15F;
    text-align: center;
}

.download-title {

    font-family: BumperStickerRegular;
    font-style: normal;
    font-weight: 400;
    font-size: 84px;
    line-height: 120%;
    /* identical to box height, or 101px */
    text-align: center;
    letter-spacing: -0.01em;

    color: #FFFFFF;


}

.download-btn.google-play {
    display: inline-flex;
    align-items: center;

}

.download-btn img {

    width: 100%;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 1.5rem;
}

/* Terms of Use Section */
.terms {
    padding: 100px 0;
    background: #F7C15F;
}

.legal-content {
    margin: 0 auto;
}

.expandable-content {
    position: relative;
    overflow-y: scroll;
}

.expandable-content:not(.expanded) {
    max-height: 50vh;
}

.expandable-content.expanded {
    max-height: none;
}

.see-more-btn {
    display: block;
    width: 200px;
    height: 50px;
    margin: 2rem auto 0;
    background: transparent;
    border: 2px solid #9E8D74;
    border-radius: 25px;
    color: #9E8D74;
    font-family: BumperStickerRegular, sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: #9E8D74;
    color: white;
    transform: translateY(-2px);
}

.expandable-content.expanded .see-more-btn {
    display: none;
}

.legal-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
}

.legal-section h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Privacy Policy Section */
.privacy {
    padding: 100px 0;
    background: #FFF7E8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #F7C15F url('../images/bg_footer.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.bottom-section {
    background: #F7C15F;
}

.contact .section-title {

    font-family: BumperStickerRegular;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    font-size: 84px;
    line-height: 120%;
    /* identical to box height, or 101px */
    letter-spacing: -0.01em;

    color: #AE6E27;


}

.contact-content {
    display: grid;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item h4 {

    font-family: BumperStickerRegular;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    /* identical to box height, or 24px */
    letter-spacing: -0.01em;

    color: #AE6E27;

}

.contact-item p {
    color: #9E8D74;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .tab-button {
    width: 40%;
    height: 100px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    font-size: 1rem;
    background: transparent;
    border-bottom: 1px solid #ae6e27;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.submit-btn {
    width: 30%;
    border-color: #ae6e27;
    color: #ae6e27;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

.contact-additional {
    text-align: center;
    margin: 0 auto;
    margin-top: 3rem;
    max-width: 600px;
}

.contact-additional p {
    color: #8B4513;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: left;
    text-transform: uppercase;
}

.contact-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    padding: 1rem;
}

/* Footer */
.footer {
    box-sizing: border-box;
    background: #9E8D74;
    color: white;
    height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .container {
    padding: 0 64px;
    height: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-copyright {
    color: #FFE9C3;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .background-section {
    }

    .contact .section-title {
        font-size: 25px;
    }

    .stats {
        margin: 50px 0;
        padding: 0;

    }

    .submit-btn {
        width: 100%;
    }

    .careers, .tabs-section, .download, .contact {
        padding: 20px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* My Nano World Section */
    .nano-world {
        padding: 50px 0;
    }

    .wave {
        height: 8vh;
    }

    .logo-image {
    }

    .nav-menu {
        position: fixed;
        height: calc(100vh - 70px);
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #9E8D74;
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        gap: 1rem;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        font-size: 1.1rem;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 40vh;
        padding-left: 10px;
    }

    .title-small {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .title-large {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-visual {
        height: 300px;
    }

    .main-character {
        width: 150px;
        height: 150px;
    }

    .side-character-1,
    .side-character-2 {
        width: 80px;
        height: 80px;
    }

    .nano-world-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 16px; /* Optional: space between columns */
    }

    .stat-number {
        font-size: 4.5rem;
    }

    .tabs-navigation {
        flex-direction: row;
        max-width: 100%;
    }

    .tab-button {
        height: 50px;
        padding: 0 0.5rem;
        font-size: 0.6rem;
    }

    .tab-button.active::after {
        bottom: -20px;
    }

    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;

        font-family: BumperStickerRegular;
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 150%;
        /* or 38px */

        color: #9E8D74;


    }

    .footer .container {
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .title-small {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .title-large {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stats-grid {
    }

    .position-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .position-details {
        font-size: 12px;
    }

    .download-title {
        font-size: 2rem;
    }
}