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

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: white;
}

.background-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: #EBF6FA;
    border-radius: 0 0 70% 0;
    z-index: -1;
}

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

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1A1A1A;
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 500;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
}

.content {
    padding-top: 4rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features {
    margin-bottom: 2rem;
    color: #2EAF7D;
    font-weight: 500;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.button {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: #2EAF7D;
    color: white;
}

.button-primary:hover {
    background-color: #259267;
}

.button-secondary {
    background-color: white;
    color: #1A1A1A;
    border: 1px solid #E5E5E5;
}

.button-secondary:hover {
    background-color: #f5f5f5;
}

.mockup {
    position: relative;
    height: 600px;
}

.mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content {
        padding-top: 2rem;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .buttons {
        justify-content: center;
    }

    .background-shape {
        width: 100%;
        height: 50%;
    }

    
}