:root {
    --bg-color: #f5f5f5;
    --text-color: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Times New Roman', Times, serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header & Nav */
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 1.5rem 2rem;
    background-color: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.container {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-logo {
    max-width: 800px;
    width: 80%;
    height: auto;
    display: block;
}

.tagline {
    font-size: clamp(1.25rem, 4vw, 2.5rem);
    font-style: italic;
    font-weight: normal;
    opacity: 0.8;
}

.about {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    background-color: #fff;
}

.about-content {
    max-width: 850px;
    text-align: center;
}

.about h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 4rem;
    position: relative;
}

.about p {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
}

.capabilities {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 4rem;
    color: var(--text-color);
    font-size: 0.9rem !important;
}

/* Base Responsive adjustments */
@media (max-width: 768px) {

    .hero {
        min-height: 100vh;
    }

    .nav-links {
        gap: 1rem;
    }
}
