* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

.flex {
    display: flex;
    flex-direction: row;
}

.border {
    flex: 1;
    border-left: 1px solid #333;
}

.content1 {
    padding: 40px 50px;
    max-width: 1000px;
}

.content1 h2 {
    color: #ff66fa;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content1 p {
    color: #bbb;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.card {
    background-color: #2a2a2a;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 3px solid #ff66fa;
    border-radius: 4px;
}

.card h3 {
    color: #ff66fa;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
}

.card ul {
    margin-left: 20px;
    margin-top: 10px;
    color: #bbb;
    font-size: 14px;
}

.card li {
    margin-bottom: 8px;
}

.section {
    margin-bottom: 30px;
}

.section h3 {
    color: #ff66fa;
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}
