/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    background-color: #ffffff;
    color: #000000;
    overflow: auto; /* Change from 'hidden' to 'auto' to enable scrolling */
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 3rem;
    border-radius: 60px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.floating-nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.floating-nav .nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: color 0.3s, background 0.3s;
}

.floating-nav .nav-link.active,
.floating-nav .nav-link:focus {
    background: #2563eb;
    color: #fff;
}

.floating-nav .nav-link:hover {
    color: #2563eb;
    background: #e0e7ff;
}

/* Main Header and Nav */
.main-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    padding: 0.5rem 0 0.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}
.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.main-nav-link {
    color: #222;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}
.main-nav-link.active,
.main-nav-link:focus {
    border-bottom: none;
    color: #051F20;
}
.main-nav-link:hover {
    color: #051F20;
}

/* Make space for header */
.horizontal-scroll-container {
    margin-top: 3.2rem;
}

/* Hero Top Right Text Bigger */
.top-right h1.hero-animate {
    font-size: 2.7rem;
    font-weight: 700;
    width: 100%;
    max-width: 900px;
    line-height: 1.18;
    margin: 0;
    letter-spacing: -0.01em;
    word-break: break-word;
}

/* Remove horizontal scroll container and flex/width styles for vertical stacking */
main {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    display: block;
}
section {
    width: 100%;
    min-height: 100vh;
    max-width: 100vw;
    display: block;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 3.2rem; /* Add padding to account for the fixed header */
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 3.2rem); /* Adjust height to account for header */
}

/* Hero Nav (top left) */
.hero-nav {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    display: flex;
    gap: 2rem;
}
.hero-nav-link {
    color: #222;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}
.hero-nav-link.active,
.hero-nav-link:focus {
    background: #2563eb;
    color: #fff;
}
.hero-nav-link:hover {
    background: #e0e7ff;
    color: #2563eb;
}

/* Top Grid Adjustments */
.top-grid {
    display: grid;
    grid-template-columns: 30% 70%;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    margin-top: 0;
}
.top-left {
    margin-left: 0;
    padding-left: 18px;
}
.top-right {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    margin-left: 0;
    transform: none;
}
.top-right h1.hero-animate {
    font-size: 1.875rem;
    font-weight: 700;
    width: 100%;
    max-width: 710px;
    line-height: 1.18;
    margin: 0;
    letter-spacing: -0.01em;
    word-break: break-word;
}

/* Bottom Grid */
.bottom-grid {
    flex: 1;
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.image-container {
    width: 60%;
    margin: 0;
    padding: 0;
}

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

.intro-text {
    position: absolute;
    left: calc(63% - 3px);
    top: 4px;
    width: 35%;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
}

/* Projects Section: vertical stacking for mobile/tablet */
.projects-grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    gap: 0;
    overflow: visible;
}
.project-item {
    flex: 0 0 38vw;
    max-width: 38vw;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    transition: flex 0.5s ease, max-width 0.5s ease;
    cursor: pointer;
    height: 100vh;
    scroll-snap-align: start;
}
.project-item.active {
    flex: 0 0 80vw;
    max-width: 80vw;
}
.project-item:not(.active) {
    flex: 0 0 38vw;
    max-width: 38vw;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    transition: bottom 0.5s ease;
}

.info-content {
    margin-bottom: 1rem;
}

.back-btn {
    display: none;
    padding: 0.5rem 1rem;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

/* Active Project States */
.project-item.active {
    flex: 0 0 80%;
}

.project-item.active .project-info {
    bottom: 0;
}

.project-item.active .back-btn {
    display: block;
}

.project-item:not(.active) {
    flex: 0 0 calc(20% / 3);
}

/* About Section */
.about {
    background: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.about-upper {
    height: calc(50% - 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.horizontal-divider {
    width: calc(100% - 4rem);
    height: 2px;
    background-color: #000;
    margin: 3rem 2rem;
}

.about-lower {
    height: calc(50% - 3rem);
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* About Left Side */
.about-left {
    padding-right: 2rem;
}

.about-left h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* About Right Side */
.about-right {
    display: flex;
    align-items: flex-end;
    padding-bottom: 2rem;
}

/* Shared Dropdown Styles */
.skills-container,
.contact-container {
    width: 100%;
}

.skills-container h2,
.contact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.dropdown-list {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.dropdown-list.visible {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    font-size: 1.2rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delays for dropdown items */
.dropdown-item:nth-child(1) { transition-delay: 0.2s; }
.dropdown-item:nth-child(2) { transition-delay: 0.4s; }
.dropdown-item:nth-child(3) { transition-delay: 0.6s; }
.dropdown-item:nth-child(4) { transition-delay: 0.8s; }
.dropdown-item:nth-child(5) { transition-delay: 1.0s; }
.dropdown-item:nth-child(6) { transition-delay: 1.2s; }

/* Contact Section Specific */
.contact-container {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.contact-list {
    text-align: right;
}

.contact-list .dropdown-item {
    color: #666;
    text-align: right;
}

/* Social Links */
.social-links {
    padding-left: 2rem;
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}

.social-icon {
    color: #051F20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(5, 31, 32, 0.1);
}

.social-icon:hover {
    color: #fff;
    background: #051F20;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Profile Image in Hero */
.profile-image-container {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
}
.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero Text Animation Prep */
.hero-animate, .intro-animate {
    opacity: 1;
}
.hero-animate .line, .intro-animate .line {
    opacity: 0;
    display: block;
}

/* Floating Scroll Buttons */
.scroll-btn {
    position: fixed;
    top: 50%;
    z-index: 2000;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: background 0.2s, opacity 0.2s;
}
.scroll-btn:hover {
    background: #1e40af;
    opacity: 1;
}
.scroll-btn-left {
    left: 16px;
    transform: translateY(-50%);
}
.scroll-btn-right {
    right: 16px;
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    .scroll-btn {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
    .scroll-btn-left {
        left: 6px;
    }
    .scroll-btn-right {
        right: 6px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .top-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .top-left {
        padding-left: 8px;
    }
    .top-right {
        width: 100%;
        margin-left: 0;
        transform: none;
        padding: 2rem 1rem 1rem 1rem;
    }
    .projects-grid {
        flex-direction: column;
        height: auto;
    }
    .project-item,
    .project-item.active,
    .project-item:not(.active) {
        flex: 1 1 100%;
        max-width: 100vw;
        height: auto;
        min-width: unset;
    }
    .main-header {
        padding-left: 1rem;
    }
    .main-nav {
        gap: 1.5rem;
    }
    .top-right h1.hero-animate {
        font-size: 1.7rem;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .top-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    .top-left {
        padding-left: 4px;
    }
    .top-right {
        width: 100%;
        margin-left: 0;
        transform: none;
        padding: 2rem 0.5rem 1rem 0.5rem;
    }
    .projects-grid {
        flex-direction: column;
        height: auto;
    }
    .project-item,
    .project-item.active,
    .project-item:not(.active) {
        flex: 1 1 100%;
        max-width: 100vw;
        height: auto;
        min-width: unset;
    }
    .intro-text {
        font-size: 1rem;
        left: 0;
        position: static;
        width: 100%;
        margin-top: 1.5rem;
        display: block;
        order: 2;
    }
    .profile-image-container {
        order: 1;
    }
    .bottom-grid {
        flex-direction: column;
        align-items: center;
    }
    .about-upper {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .floating-nav {
        padding: 0.75rem 1rem;
    }
    .floating-nav .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0.7rem;
    }
    .profile-image-container {
        width: 100%;
        height: 320px;
    }
    .profile-image {
        height: 320px;
    }
    .main-header {
        padding-left: 0.5rem;
    }
    .main-nav {
        gap: 1rem;
    }
    .top-right h1.hero-animate {
        font-size: 1.2rem;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .about-upper {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
        padding: 2rem;
    }

    .about-right {
        padding-bottom: 0;
    }

    .about-left {
        padding-right: 0;
    }

    .about-lower {
        height: auto;
        padding: 0 2rem 2rem;
    }

    .contact-container {
        padding-top: 0;
        align-items: flex-start;
        text-align: left;
    }

    .contact-list {
        text-align: left;
        width: 100%;
    }

    .contact-list .dropdown-item {
        text-align: left;
    }

    .social-links {
        padding-left: 0;
        padding-top: 2rem;
        justify-content: flex-start;
        width: 100%;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }

    .horizontal-divider {
        display: none;
    }
}

/* Add specific styling for the projects section */
.projects {
    min-height: 100vh;
    margin-top: 70vh; /* Reduced from 85vh to 70vh to close the gap */
    position: relative;
    background-color: #ffffff; /* Ensure background is solid */
    padding: 0 2rem 2rem;
}

/* Section Title Styling */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 0.5rem 0; /* Reduced from 2rem to 0.5rem to minimize space */
    letter-spacing: 0.2rem;
    color: #000000;
    padding-top: 1rem; /* Reduced from 2rem to 1rem */
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
}

/* Bento Card Styling */
.bento-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    perspective: 1500px;
    cursor: pointer;
    transition: transform 0.3s ease, height 0.3s ease, width 0.3s ease;
    z-index: 1;
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
}

.bento-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.bento-card.active .bento-card-inner {
    transform: rotateY(180deg);
}

.bento-card-front, .bento-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.bento-card-front {
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.bento-card-front img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    transition: height 0.3s ease;
}

.bento-card:hover .bento-card-front img {
    height: 85%;
}

.bento-card-front h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    background-color: #fff;
    width: 100%;
}

.bento-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: inset 0 0 0 10px rgba(0, 0, 0, 0.05);
}

.bento-content {
    text-align: left;
}

.bento-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #2563eb;
}

.bento-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.close-btn {
    padding: 0.5rem 1rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: #1d4ed8;
}

/* Book-like styling */
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 5%, rgba(0,0,0,0) 95%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scroll */
        width: 100%;
    }
    
    main {
        overflow-x: hidden;
    }

    .hero {
        min-height: 100vh;
        padding-top: 3.2rem;
    }

    .hero-content {
        width: 100%;
        height: calc(100vh - 3.2rem);
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 3.2rem; /* Maintain padding on smaller screens */
    }
    .hero-content {
        height: calc(100vh - 3.2rem); /* Maintain adjusted height on smaller screens */
    }
}
@media (max-width: 7