* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

/* Main Layout */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

h1 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: bold;
}

/* Red Drop Zone */
.drop-zone {
    background-color: #e53935; /* Red color */
    border-radius: 8px;
    padding: 50px 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
}

.icon-group {
    font-size: 50px;
    color: white;
    margin-bottom: 20px;
    opacity: 0.8;
}

.icon-group i {
    margin: 0 5px;
}

/* Multi-part Button */
.button-group {
    display: inline-flex;
    border-radius: 4px;
    overflow: hidden;
}

.btn-main {
    background: white;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-arrow {
    background: white;
    border: none;
    border-left: 1px solid #ddd;
    padding: 0 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Text Sections */
.description {
    text-align: left;
    margin-bottom: 25px;
    color: white;
}

.features {
    text-align: left;
    list-style: none;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.check {
    background-color: #2ecc71;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}