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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 100px; /* Adjust based on your header height */
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.logo img {
    width: 120px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #ff0000;
}

.contact-btn {
    background: #ff0000;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 150px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-title {
    animation: slideInLeft 1s ease-out;
}

.hero-title h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #ff0000;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    animation: fadeIn 1.2s ease-out;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    animation: slideInRight 1s ease-out;
}

.accent-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.accent-image:hover {
    transform: scale(1.05);
}

.accent-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.explore-btn {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.explore-btn:hover {
    gap: 1rem;
}

/* Partner Logos */
.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 4rem 5%;
    background: #f8f8f8;
    flex-wrap: wrap;
}

.partner-logo {
    height: 100px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Geometric Background */
.pattern-background {
    position: absolute;
    bottom: -50%;
    right: -60%;
    width: 70%;
    height: 70%;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
}

/* Services Section */
.services-section {
    padding: 5rem 5%;
    background: #ffffff;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.services-header p {
    font-size: 1.1rem;
    color: #333;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    background: #ffffff;
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-item:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    background: rgba(0, 0, 0, 0.05);
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

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

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

/* Projects Section */
header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.projects-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.projects-header {
    margin-bottom: 3rem;
}

.projects-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.projects-header p {
    font-size: 1.1rem;
    color: #333;
}

.projects-tabs {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.project-tab {
    background: none;
    border: none;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
}

.project-tab:hover {
    color: #333;
}

.project-tab.active {
    color: #ff0000;
    font-weight: 600;
}

.project-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1.05rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff0000;
}

.projects-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    animation: fadeIn 0.8s ease-out;
    transition: opacity 0.3s ease;
}

.main-image {
    grid-row: span 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.thumbnail {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Expertise Section */
.expertise-section {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.expertise-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.expertise-title p {
    font-size: 1.1rem;
    color: #333;
}

.expertise-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    padding-top: 0.5rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    animation: fadeIn 1s ease-out;
}

.expertise-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.expertise-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.expertise-item:hover .expertise-image img {
    transform: scale(1.1);
}

.expertise-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 2rem 1.5rem;
    transition: padding 0.3s ease;
}

.expertise-item:hover .expertise-overlay {
    padding-bottom: 2.5rem;
}

.expertise-overlay h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* About Section */
.about-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text-left,
.about-text-right {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.about-text-left {
    text-align: right;
    padding-right: 1rem;
}

.about-text-right {
    text-align: left;
    padding-left: 1rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hexagon-container {
    position: relative;
    width: 400px;
    height: 400px;
    animation: floatAnimation 6s ease-in-out infinite;
}

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

/* Service Labels Positioning */
.service-label {
    position: absolute;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.label-support {
    top: 10%;
    left: 5%;
    color: #00bcd4;
}

.label-design {
    top: 10%;
    right: 10%;
    color: #9b59b6;
}

.label-visual {
    top: 45%;
    right: -30%;
    color: #3498db;
}

.label-supply {
    bottom: 10%;
    right: 10%;
    color: #2ecc71;
}

.label-trust {
    bottom: 10%;
    left: 10%;
    color: #ff0000;
}

.label-install {
    top: 45%;
    left: -25%;
    color: #f39c12;
}

/* Animation */
@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    75% {
        transform: translateY(10px) rotate(-1deg);
    }
}

/* Partners Section */
.partners-section {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.partners-header p {
    font-size: 1.1rem;
    color: #333;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.partner-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.partner-item:nth-child(1) {
    animation-delay: 0.1s;
}

.partner-item:nth-child(2) {
    animation-delay: 0.2s;
}

.partner-item:nth-child(3) {
    animation-delay: 0.3s;
}

.partner-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.partner-item img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.contact-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.contact-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    color: white;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    border-bottom-color: #ff0000;
}

.submit-btn {
    background: #ff0000;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    border-radius: 8px;
}

.submit-btn:hover {
    background: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Footer Section */
.footer-section {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5% 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-column h3 {
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000;
}

/* Connect Column */
.contact-person {
    margin-bottom: 1.5rem;
}

.contact-person h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-person p {
    margin: 0.3rem 0;
}

.contact-person a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-person a:hover {
    color: #ff0000;
}

/* Location Column */
.map-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.address {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Logo Column */
.logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: auto;
    height: 100px;
    margin-bottom: 1rem;
}

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

.brand-name {
    text-align: center;
}

.brand-name h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ff0000;
    margin: 0;
}

.brand-name span {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
}

/* Footer Bottom */
.footer-bottom {
    background: #ff0000;
    color: white;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.design-credit {
    font-weight: 400;
    text-decoration: none;
    color: white;
}

/* Responsive*/
@media (max-width: 1200px) {
    .services-grid {
        justify-content: center;
    }

    .service-item {
        max-width: 220px;
    }

    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 2fr;
        row-gap: 3rem;
    }

    .logo-column {
        grid-column: span 3;
        margin-top: 2rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 150px 5% 60px;
    }

    .hero-title h1 {
        font-size: 3rem;
    }

    .hero-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .partners {
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 2rem;
    }

    .service-design {
        grid-column: 1;
        grid-row: 1;
    }

    .service-visual {
        grid-column: 2;
        grid-row: 1;
    }

    .service-supply {
        grid-column: 1;
        grid-row: 2;
    }

    .service-install {
        grid-column: 2;
        grid-row: 2;
    }

    .service-support {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .projects-gallery {
        grid-template-columns: 1fr;
    }

    .main-image {
        grid-row: span 1;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text-left,
    .about-text-right {
        text-align: center;
        padding: 0;
        max-width: 700px;
        margin: 0 auto;
    }

    .hexagon-container {
        width: 350px;
        height: 350px;
        margin: 2rem auto;
    }

    /* Hide labels on mobile for cleaner look */
    .service-label {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        max-width: 600px;
    }

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title h1 {
        font-size: 2.5rem;
    }

    .pattern-background {
        display: none;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        max-width: 100%;
        width: 100%;
    }

    .projects-header h2 {
        font-size: 2rem;
    }

    .projects-tabs {
        overflow-x: auto;
        gap: 2rem;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-title h2 {
        font-size: 2rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-item {
        height: 300px;
    }

    .partners-header h2 {
        font-size: 2rem;
    }

    .partners-logos {
        flex-direction: column;
        gap: 2rem;
    }

    .partner-item {
        max-width: 250px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-container {
        padding: 3rem 5%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column:first-child {
        display: flex;
        gap: 4rem;
    }

    .footer-column:first-child h3 {
        margin-bottom: 1rem;
    }

    .logo-column {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

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

    .expertise-item {
        height: 250px;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .hexagon-container {
        width: 280px;
        height: 280px;
    }

    .footer-container {
        padding: 2rem 5% 1.5rem;
    }

    .footer-column:first-child {
        flex-direction: column;
        gap: 1.5rem;
    }
}