html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #0d0d0d;
    background: #ffffff;
    line-height: 1.8em;
}

nav {
    background: #fff;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: right;
    border-bottom: 1px solid #e0e0e0;
}

/*
.logo img {
    height: 40px;
}
*/

nav .links a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

@media (max-width: 600px) {
    nav {
        display: block;
        padding: 20px 20px;
        justify-content: center;
    }
    nav .links {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: space-around;
    }
    nav .links a {
        margin-left: 0px;
    }
}

nav .links a:hover {
    color: #2c74ff;
}

header {
    /* background: linear-gradient(to bottom right, #ff8282, #8f92ff); */
    background: linear-gradient(to bottom right, #07002c, #9093ff);
    padding: 80px 20px;
    text-align: center;
}

header h1 {
    color: white;
    font-size: 3em;
    margin-top: 15px;
    margin-bottom: 30px;
    line-height: 1.2em;
}

header p {
    font-size: 1.25em;
    margin: 0 auto 40px;
    color: white;
}

.btn {
    background: #2c74ff;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

section {
    padding: 80px 20px 30px 20px;
    max-width: 800px;
    margin: auto;
}

.container {
    max-width: 600px;
    margin: auto;
}

section h2 {
    color: #4e568f;
    font-size: 2.5em;
    margin-top: 0px;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.2em;
}

section h3 {
    color: #4e568f;
    font-size: 2em;
    margin-top: 0px;
    margin-bottom: 50px;
    text-align: center;
}

section p, section ul {
    font-size: 1.1em;
    color: #444;
}

section p {
    margin: 0 auto 30px;
    color: #444;
    text-align: center;
}

section .step {
    display: block;
    color: #4e568f;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.process-card {
    background: #f5faff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2s;
}

.process-card img {
    margin: 10px;
}

.process-card:hover {
    transform: translateY(-4px);
}

.process-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #2c74ff;
}

.process-card p {
    margin: 0;
}

form {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 50px;
}

form label {
    font-weight: bold;
}

form button {
    margin-top: 15px;
}

input, textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    margin: 5px 0px 15px 0px;
    font-family: inherit;
}

button {
    background: #2c74ff;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
}

footer {
    background: #fafafa;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    color: #888;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
}

.process-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.circle-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f0f0ff;
    border-radius: 50%;
    font-size: 1.7em;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(44,116,255,0.10);
}

.process-list strong {
    font-size: 1.15em;
    display: block;
    margin-bottom: 4px;
}

.process-list p {
    margin: 0;
    color: #444;
    text-align: left;
}

.gradient-text {
    background: linear-gradient(90deg, #ffe27b 0%, #ffcaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

#hire-us li {
    padding-bottom: 1em;
}

.big-emoji {
    display: block;
    font-size: 2.5em;
    margin-top: 10px;
    margin-bottom: 30px;
}

/*
mark {
  margin: 0 -0.4em;
  padding: 0.1em 0.4em;
  border-radius: 0.8em 0.3em;
  background: transparent;
  background-image: linear-gradient(
    to right,
    rgba(255, 225, 0, 0.1),
    rgba(255, 225, 0, 0.7) 4%,
    rgba(255, 225, 0, 0.3)
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
*/