/* Basic page reset and global styles */
body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.hero-section {
    background-color: #f7f7f7;
    padding: 50px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.text-content {
    flex: 1;
    padding-right: 50px;
}

.company-name {
    color: #75cc81;
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.text-content h1 {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #05173d;
}

.text-content h3 {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #4a4a4a;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-primary,
.cta-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
}

.cta-primary {
    background-color: #75cc81;
    color: #fff;
}

.cta-primary:hover {
    background-color: #60af6a;
    color: #fff;
}

.cta-secondary {
    background-color: transparent;
    color: #4a4a4a;
    border: 1px solid #c2c2c2;
}

.cta-secondary:hover {
    color: #333;
    border-color: #999;
}

.image-content {
    position: relative;
    width: 50%;
    max-width: 600px;
    display: flex;
    justify-content: flex-start;
}

.image-content > img:first-child {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-content > img:last-child {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    max-width: 400px;
    height: auto;
    transform: translate(-15%, 15%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Header/Navigation Styling */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 10%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 40px;
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.back-office-btn,
.start-free-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.start-free-btn:hover {
    background-color: #60af6a;
    color: #fff;
}

.back-office-btn {
    background-color: transparent;
    color: #4a4a4a;
}

.back-office-btn .icon {
    width: 18px;
    height: 18px;
    fill: #4a4a4a;
}

.start-free-btn {
    background-color: #75cc81;
    color: #fff;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.lang-selector svg {
    width: 12px;
    height: 12px;
    fill: #4a4a4a;
}

/* Media queries for responsiveness */
@media (max-width: 1024px) {
    .header .nav,
    .header .back-office-btn {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content,
    .image-content {
        width: 100%;
        padding: 0;
    }

    .image-content {
        margin-top: 40px;
        justify-content: center;
    }

    .image-content > img:last-child {
        transform: none;
        position: static;
        margin-top: -50px;
    }

    .cta-buttons {
        justify-content: center;
    }
}

.typewriter {
    color: green; /* The color you want the typing text to be */
    border-right: 2px solid green; /* This creates the blinking cursor effect */
    white-space: nowrap; /* Prevents the text from wrapping to the next line */
    overflow: hidden; /* Hides the overflowing text */
    animation: blink-caret 0.75s step-end infinite; /* The blinking cursor animation */
}

/* The CSS animation for the blinking cursor */
@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: green;
    } /* The cursor is visible for half the time */
}

.landing_page_header {
    font-size: 60px;
    line-height: 64px;
    /* letter-spacing: 0.015em; */
    color: var(--black01);
    padding: 0;
    margin: 0;
    font-weight: normal; /* This is the key change */
}

.landing_page_subheader {
    font-size: 1.5em; /* or 1.5em, or a specific pixel value */
    font-weight: normal; /* The key change to remove bolding */
    margin-top: 1em;
    margin-bottom: 1em;
    color: #888;
    /* You can add other styles like font-family, color, etc. as needed */
}
