* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}/* Header Container Styles */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    padding: 50px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: none;
}.header-container.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}.header-container.scrolled + .hamburger {
    color: #5D5D5D;
}/* Hamburger Menu Styles */
.hamburger {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 105;
    color: #5D5D5D;
}.logo {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 103;
    width: 120px;
    height: auto;
}/* Optional hover effect for logo */
.logo:hover {
    opacity: 0.8;
    cursor: pointer;
}.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 0;
    background-color: #ffffff;
    z-index: 103;
    transition: width 0.5s;
    padding-top: 60px;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    overflow-x: hidden;
    display: block;
}.nav-menu a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 18px;
    color: #000000;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}/* Highlight active link */
.nav-menu a.active {
    background-color: #f1f1f1;
    color: #3B3B3C;
}/* Shift only the first link down 50px when scrolled */
.header-container.scrolled + .hamburger + .nav-menu a:first-child {
    margin-top: 50px;
}.nav-menu a:hover {
    background-color: #f1f1f1;
    color: #3B3B3C;
}/* Main Content Centering */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Vertically centers content */
    min-height: 100vh; /* Full viewport height */
    padding: 20px; /* General padding for spacing */
    margin-top: 60px; /* Reduced from 80px to move content up */
    transform: translateY(-10%); /* Shifts content upward slightly */
    box-sizing: border-box;
}/* Hero Section with Image and Text Side by Side */
.hero-text-section {
    max-width: 1400px;
    padding: 15px 5px;
    width: 100%;
}.hero-text-container {
    display: flex;
    align-items: center; /* Vertically center image and text */
    gap: 40px;
}.hero-image-left {
    flex: 1;
}.hero-image-side {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}.hero-text-right {
    flex: 1;
    text-align: left; /* Left-aligned for p and ul */
    padding: 0 15px;
}.hero-text-right h1 {
    font-size: 2em;
    color: #3B3B3C;
    margin-bottom: 15px;
    text-align: center; /* Centered for h1 */
}.hero-text-right p {
    font-size: 0.9em;
    color: #5D5D5D;
    line-height: 1.6;
    margin-bottom: 10px;
}.expertise-list {
    list-style: disc;
    margin: 10px 0 10px 30px;
    font-size: 0.9em;
    color: #5D5D5D;
}.expertise-list li {
    margin-bottom: 5px;
}.cta-container {
    text-align: center;
    margin-top: 15px;
}.cta-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3B3B3C;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8em;
    transition: background-color 0.3s;
}.cta-button:hover {
    background-color: #228B22; /* Forest green */
}/* Footer Styles */
footer {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    width: 100%;
    margin-top: auto; /* Pushes footer to the bottom if content is short */
}footer p {
    margin: 0;
}.footer-links {
    margin: 0;
}.footer-links a {
    color: #000;
    text-decoration: none;
    margin: 0 10px;
}.footer-links a:hover {
    color: #e6e6e6;
}.footer-links .instagram-icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    transition: opacity 0.3s;
}.footer-links a:hover .instagram-icon {
    opacity: 0.8;
}/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding-top: 130px; /* Restore original padding for mobile */
        padding-bottom: 20px;
        justify-content: flex-start; /* Align content to top on mobile */
        min-height: calc(100vh - 180px); /* Restore original min-height */
        margin-top: 0; /* Remove margin-top for mobile */
        transform: none; /* Remove transform for mobile */
    }

.hero-text-section {
    padding: 10px 5px;
}

.hero-text-container {
    flex-direction: column;
    gap: 15px;
}

.hero-image-left {
    text-align: center; /* Center image horizontally */
    margin-top: 10px; /* Added to create gap below header */
}

.hero-image-side {
    max-height: 250px; /* Reduced from 300px */
    width: auto;
    max-width: 100%;
}

.hero-text-right {
    text-align: left;
    padding: 0 10px;
}

.hero-text-right h1 {
    font-size: 1.6em;
    text-align: center;
}

.hero-text-right p {
    font-size: 0.75em;
}

.expertise-list {
    font-size: 0.75em;
    margin-left: 20px;
}

.cta-button {
    width: 100%;
    padding: 8px;
    font-size: 0.7em;
}