* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #ffffff;
}

.navbar {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
}

.logo {
    color: #333;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 500;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
    min-height: 80vh;
    max-width: 1400px;
    margin: 0 auto;
    position: relative; /* Needed for absolute positioning of the line */
    z-index: 1; /* Ensures the content stays above the background */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 20%; /* 20% from the right */
    width: 500px; /* Width of the line */
    height: 104.1vh; /* Ensures it stretches down */
    background-color: #006d77; /* Blue color */
    z-index: -1; /* Sends it to the background */
}


.hero-content {
    padding: 4rem 2rem;
}

.hero-name {
    font-size: 5rem;
    color: #42b883;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-description {
    color: #666;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #006d77;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005c66;
}

.hero-image {
    display: flex;
    align-items: flex-start; /* Aligns content to the top */
    justify-content: flex-start; /* Aligns content to the left */
    overflow: hidden;
    height: 100vh; /* Ensures it takes the full viewport height */
    background-position: top left; /* Positions the background to the top-left */
    background-attachment: fixed;
    margin: 0; /* Removes any default margins */
    padding: 0; /* Removes any default paddings */
}

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


.about {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 2rem auto;
    }

    .menu-icon {
        display: block;
    }
}

