/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-title {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.hero-title h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.02em;
}

/* Content Sections */
.intro-section,
.technology-section,
.icebridge-section,
.eos-section {
    padding: 4rem 0;
}

.intro-section {
    background-color: white;
}

.technology-section {
    background-color: #f8f9fa;
}

.icebridge-section {
    background-color: white;
}

.eos-section {
    background-color: #f8f9fa;
}

.technology-section h2,
.icebridge-section h2,
.eos-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.definition {
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.definition strong {
    color: #2c3e50;
    font-weight: 700;
}

.intro-section p,
.technology-section p,
.icebridge-section p,
.eos-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #444;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.lemuridae-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.lemuridae-link:hover {
    transform: scale(1.25);
}

.lemuridae-logo {
    height: 40px;
    width: auto;
    background-color: white;
    padding: 8px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }

    .hero-section {
        height: 50vh;
        min-height: 300px;
    }

    .intro-section,
    .technology-section,
    .icebridge-section,
    .eos-section {
        padding: 3rem 0;
    }

    .technology-section h2,
    .icebridge-section h2,
    .eos-section h2 {
        font-size: 2rem;
    }

    .definition {
        font-size: 1.125rem;
    }

    .intro-section p,
    .technology-section p,
    .icebridge-section p,
    .eos-section p {
        font-size: 1rem;
        text-align: left;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title h1 {
        font-size: 1.5rem;
    }

    .technology-section h2,
    .icebridge-section h2,
    .eos-section h2 {
        font-size: 1.75rem;
    }
}