@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
body {
    font-family: "DM Sans", serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(219,219,219,1) 100%); 
}
header {
    padding: 20px 40px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 70vw;
    margin: auto;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
}
nav ul li {
    display: inline;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.btn {
    background: #000;
    color: #eee;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(90deg,#ff5f6d,#ffc371);
    border-radius: 22px;
    box-shadow: 0 10px 30px 0 rgba(0,0,0,.15);
    color: white;
    max-width: 70vw;
    margin: 0 auto;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}
.hero p {
    font-size: 22px;
    margin-bottom: 25px;
}
.feature-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
    gap: 20px;
}
.feature {
    background: linear-gradient(90deg,#ffc371,#ffeb82);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    --tw-shadow: 0 10px 30px 0 rgba(0,0,0,.15);
    --tw-shadow-colored: 0 10px 30px 0 var(--tw-shadow-color);
    box-shadow: 0 0 transparent,0 0 transparent,0 10px 30px 0 rgba(0,0,0,.15);
    box-shadow: var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);
    color: rgb(74, 74, 74);
    text-transform: uppercase;
    font-weight: 700;
}
.pricing-table {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: auto;
    padding: 50px 20px;
    gap: 20px;
}
.plan {
    background: linear-gradient(270deg,#aa5481,#e2444f);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    font-size: 18px;
}
a, a:visited, a:active, a:hover {
    text-decoration: none;
    color: inherit;
}
footer {
    text-align: center;
    padding: 25px;
    background: #333;
    color: white;
    margin-top: 40px;
}
#terms {
    max-width: 70vw;
    margin: 0 auto;
}