body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #b9b9cd, #008080);
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(90deg, #b9b9cd, #008080);
    color: white;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
    background-color: #333;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    height: 68vh;
    background: linear-gradient(90deg, #b9b9cd, #008080);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .container {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.hero .cta-button {
    padding: 12px 24px;
    font-size: 18px;
    background-color: #a76952;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .cta-button:hover {
    background-color: #ff6347;
}

.trusted-buyers {
    padding: 80px;
    background-color: #1e1e1e;
    color: #e0e0e0;
}

.trusted-buyers .container {
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-buyers h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #ffffff;
}

.trusted-buyers .trusted-grid {
    display: flex;
    gap: 30px;
}

.trusted-buyers .trusted-business {
    flex: 1;
    background-color: #333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.trusted-buyers .trusted-business p {
    font-size: 16px;
    color: #b0b0b0;
}

.trusted-buyers .business-img .img-div {
    width: 140px;
    height: 140px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto 10px;
}

.trusted-buyers .business-img .img-div .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.features {
    padding: 80px 20px;
    background-color: #1e1e1e;
    color: #e0e0e0;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #ffffff;
}

.features .feature-grid {
    display: flex;
    gap: 30px;
}

.features .feature {
    flex: 1;
    background-color: #333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.features .feature h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.features .feature p {
    font-size: 16px;
    color: #b0b0b0;
}

footer {
    background-color: #1f1f1f;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.typewriter {
    border-right: 2px solid #fff;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: typing 2s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}
