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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    font-family: "Lexend", sans-serif;
}

/* Header */
.header {
    background: #2F393B;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family: "Lexend", sans-serif;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: opacity 0.3s;
}

.logo-image:hover {
    opacity: 0.8;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00bcd4;
}

/* Hero Section */
.hero {
    background-color: #2F393B;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    font-family: "Lexend", sans-serif;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 250;
}

.hero-logo {
    text-align: center;
}

.hero-logo-icon {
    width: 500px;
    height: 500px;
    margin: 0 auto;
    background-image: url('catapult-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-brand {
    text-align: center;
}

.hero-brand h2 {
    font-size: 3rem;
    color: #00d4aa;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: #00d4aa;
}

/* Services Section */
.services {
    background-color: #fff;
    font-family: "Lexend", sans-serif;
}

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

.service-card {
    background-color: #2F393B;
    color: white;
    padding: 3rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card .subtitle {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-item {
    margin-bottom: 2.5rem;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-item p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 250;
}

/* CTA Section */
.cta {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
    font-family: "Lexend", sans-serif;
}

.cta-button {
    display: inline-block;
    background-color: #2F393B;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a252f;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-brand h2 {
        font-size: 2rem;
    }

    .large-logo {
        width: 150px;
        height: 150px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}