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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    min-height: 100vh;
}

/* Floating Navigation Bar */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    gap: 30px;
    align-items: center;
}

.floating-nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.floating-nav a:hover {
    color: #666;
}

/* Hero Section */
.hero-section {
    background-color: black;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px 50px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.hero-text-container {
    flex: 1;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #e0e0e0;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

/* Logo Top Left */
.logo-top-left {
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: 100;
}

.logo-top-left h2 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

/* Logo on white background pages */
.page-content:not(.services-page):not(.about-page) .logo-top-left h2 {
    color: black;
}

/* Page Content for blank pages */
.page-content {
    min-height: calc(100vh - 100px);
    padding-top: 100px;
    background-color: white;
    position: relative;
    padding-bottom: 80px;
}

/* Services Page */
.page-content.services-page {
    background-color: black;
    position: relative;
    padding-bottom: 80px;
}

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

.services-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: white;
}

.services-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.services-content-wrapper {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.services-content {
    display: flex;
    flex-direction: column;
}

.services-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    align-self: stretch;
}

.services-image {
    max-width: 100%;
    height: auto;
}

.service-section {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-header {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.service-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #e0e0e0;
    min-height: 24px;
}

/* About Page */
.page-content.about-page {
    background-color: black;
    padding-top: 100px;
    position: relative;
    padding-bottom: 80px;
    max-height: calc(100vh - 400px);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 50px;
    display: flex;
    gap: 60px;
    align-items: center;
    max-height: calc(100vh - 400px);
}

.about-left-pane {
    flex: 1;
    background-color: black;
    color: white;
    padding: 40px;
}

.about-right-pane {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.founder-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #e0e0e0;
}

.founder-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer */
.site-footer {
    background-color: black;
    padding: 0 30px;
    position: relative;
    z-index: 100;
    height: 100px;
    display: flex;
    align-items: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    height: 100%;
    width: 100%;
}

.footer-left {
    color: white;
}

.footer-left p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: white;
}

.footer-right {
    color: white;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #e0e0e0;
}

