@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #1e1e1e;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
}


header {
    text-align: center;
    padding-bottom: 20px;
}

header h1 {
    font-size: 2.8em;
    color: #ff9900;
    line-height: 1.2;
    text-transform: none;
    margin-bottom: 10px;
}

header h3 {
    font-size: 1.8em;
    color: #ff9900;
    line-height: 1.2;
    margin-top: 5px;
    font-weight: normal;
    text-align: center;
    border-radius: 15px;
    font-size: 1.5em;
    color: #ffffff;
    font-weight: bold;
}


section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 2em;
    color: #00aaff;
    border-bottom: none;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #d1d1d1;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #d1d1d1;
}

ul li {
    margin-bottom: 15px;
}

pre {
    background-color: #444;
    padding: 15px;
    overflow: auto;
    font-size: 1em;
    color: #ffffff;
}

code {
    font-family: 'Courier New', Courier, monospace;
    color: #ff9900;
}

.contact h2 {
    font-size: 3em;
    color: #00aaff;
    background-color: #ffcc00;
    margin: 0;
    text-transform: lowercase;
    font-weight: bold;
}

.contact a {
    font-size: 1.5em;
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
}

.contact a:hover {
    text-decoration: underline;
}

.pricing p {
    font-weight: bold;
    color: #ff9900;
}

.intro {
    background-color: #b36b00;
    padding: 50px;
    text-align: left;
    border-radius: 15px;
    font-size: 1.5em;
    color: #ffffff;
    font-weight: bold;
}

.intro ul {
    list-style-type: disc;
    margin-left: 40px;
}

.intro ul li {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #ffffff;
}

.intro p {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.key-features, .get-started, .supported-files, .document-types, .authorization, .get-started-today, .pricing, .contact {
    padding: 20px;
    background-color: #1e1e1e;
}

.who-are-customers {
    text-align: right;
    color: #00aaff;
    font-size: 1.2em;
    margin-top: 40px;
}

.circle-badge {
    background-color: #b36b00;
    color: #ffffff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 120px;
    margin: 20px;
    font-size: 1.1em;
    font-weight: bold;
}

.consent-container {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    width: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.consent-container h2 {
    color: #ff9900;
    margin-bottom: 10px;
}
.consent-container p {
    font-size: 14px;
    color: #d1d1d1;
}
.checkbox-container {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkbox-container input {
    margin-right: 10px;
}
button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}
button:disabled {
    background-color: #ccc;
}