body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #1f1f1f;
    display: flex;
    flex-direction: column;
    height: 100vh;
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffcc00;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 50px;
    height: auto;
}

.navbar h1 {
    margin: 0;
    padding-left: 1em;
    font-size: 1.5em;
    color: #1f1f1f;
}

.navbar .cta-button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #ff6600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar .cta-button:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

.container {
    display: flex;
    justify-content: space-between;
    margin: 60px 20px;
    max-width: 1200px;
    /*margin: 0 auto;*/
    text-align: center;
    flex: 1;
}

.main-section {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.left-side {
    flex: 1;
    padding-right: 10em;
}

.right-side {
    flex: 1;
    padding-left: 20px;
}

.title {
    font-size: 3em;
    color: #1f1f1f;
    margin-top: 3vmin;
    margin-bottom: 3vmin;
    font-weight: 700;
}

.benefit-title {
    font-size: 1.5em;
    color: #1f1f1f;
    margin-bottom: 3vmin;
    font-weight: 700;
}

.summary {
    font-size: 1.5em;
    color: #1f1f1f;
    margin-bottom: 10vmin;
    line-height: 1.2;
}

.cta-button-large {
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background-color: #ff6600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.cta-button-large:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

.demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% - 80px;
    max-width: 100%;
    margin: 0 auto 60px auto;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.demo input[type="text"],
.demo textarea {
    font-family: 'Roboto', sans-serif;
    width: calc(100% - 22px);
    padding: 10px;
    font-size: 1.2em;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    resize: none;
    background-color: #f9f9f9;
}

.demo input[readonly],
.demo textarea[readonly] {
    background-color: #f9f9f9;
    cursor: text;
}

.demo button {
    width: calc(100% - 22px);
    padding: 10px;
    font-size: 1.2em;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.demo button:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.demo button.green {
    background-color: green;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.demo button.blink {
    animation: blink 4s infinite;
}

.demo label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.demo input[type="radio"] {
    margin-right: 10px;
}

.demo .radio-group,
.demo .select-group {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    margin-bottom: 20px;
}

.demo .radio-group p {
    margin: 5px 0;
    padding: 0;
}

.demo select {
    font-family: 'Roboto', sans-serif;
    width: 40vmin;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.benefits-grid {
    display: grid;
    max-width: 80%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.benefit {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    text-align: center;
}

.benefits-icon {
    background-color: #ddd;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.right-side h2 {
    font-size: 2.5em;
}

.second-section {
    background: linear-gradient(135deg, #ebeae8, #eceae3);
    padding: 60px 20px;

}

.benefits {
    align-items: center;
    justify-items: center;
    display: flex;
    flex-direction: column;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5em;
    color: #1f1f1f;
    margin-bottom: 4vmin;
}

.benefits ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    font-size: 1.2em;
    display: inline-block;
    text-align: left;
}

.benefits ul li {
    margin: 10px 0;
}

.loading-spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.code-container {
    font-family: monospace;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    text-align: left;
    margin-top: 20px;
}

.code-line {
    margin: 5px 0;
}

.test-spinner {
    border-top: 16px solid #27ae60;
}

.test-screenshot {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.report {
    border: 1px solid #000;
    padding: 20px;
    margin-top: 20px;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.report-metrics {
    text-align: center;
}

.next-projected {
    text-align: center;
}

.region {
    text-align: center;
    padding: 10px;
    border: 1px solid #000;
}

.test-summary {
    margin-bottom: 20px;
}

.success {
    color: green;
}

.run-artifacts {
    display: flex;
    justify-content: space-between;
}

.run-artifacts div {
    width: 18%;
    height: 100px;
    background-color: #000;
}

.run-artifacts img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-button-demo {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        max-width: 100%;
        align-items: center;
    }

    .left-side, .right-side {
        padding: 10px;
        width: 100%;
    }

    .report-metrics {
        max-width: 90%;
    }

    .benefits-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}
