/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DA3C03;
    --gap--xs: 8px;
    --gap--m: 24px;
    --text-color: #242527;
    --text-secondary: #656668;
    --info100: #006EAD;
    --neutral-800: #FFF;
    --paper700: #F9F6EB;
}

body {
    color: #333;
    background-color: #fdf8f2;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.decorative-curve {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 492px;
    height: 492px;
    justify-content: center;
    align-items: center;
    z-index: 0;
    transform: translate(100px, -120px);
}

header {
    margin-bottom: 152px;
}

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

main {
    display: flex;
    min-height: 100vh;
}

.left-container {
    flex: 1;
    background: var(--neutral-800);
    display: flex;
    justify-content: flex-end;
}

.left-content {
    max-width: 800px;
    padding-top: 80px;
    padding-left: 64px;
    padding-right: 64px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
}

.left-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.right-container {
    flex: 1;
    position: relative;
    background: var(--paper700);
    padding: 0;
    overflow: hidden;
}

.right-content {
    padding: 200px 64px 80px;
    position: relative;
    z-index: 1;
}

h1 {
    color: var(--text-color);
    font-family: Literata;
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    max-width: 670px;
}

.subtitle {
    color: var(--text-secondary);
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 48px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: var(--gap--xs);
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    transition: background-color 0.2s;
    padding: 0;
}

.btn:hover {
    background-color: #c04314;
}

h3 {
    color: var(--text-color);
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 0;
}

.resources-link {
    color: var(--info100);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.features {
    list-style: none;
    display: grid;
    gap: 2rem;
    padding: 2rem;
    border-radius: var(--gap--xs);
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: var(--gap--xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.features span {
    color: var(--text-color);
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    
    .left-container, .right-content {
        padding: 40px 24px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .decorative-curve {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }
    
    header {
        margin-bottom: 64px;
    }
}

/** embed.html */
a.nm-branding-link img {
    height: 40px;
    width: 100px;
    fill: red !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3px;
    image-rendering: auto;
}

/* embed.html styles */
.embed-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
    text-align: center;
}

.embed-container h1 {
    color: var(--text-color);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
}


.embed-container h1.action-page {
    font-size: 48px;
}

.embed-footer {
    padding: 2rem;
    border-top: 1px solid #E5E5E5;
    text-align: center;
}

.nm-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.nm-branding-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 1.5;
}

.nm-branding-link:hover {
    text-decoration: underline;
}

.nm-branding-logo {
    height: 24px;
    width: auto;
    margin-bottom: 0.5rem;
}