body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #2b2b2b;
    color:#d4caab;
}

.section {
    padding: 60px 80px;
}

h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

h1 span {
    color: #A3A3A3;
}

.wrapper {
    display: flex;
    gap: 40px;
}

/* LEFT */
.left {
    flex: 1.2;
}

.left h2 {
    color: #E68203;
}

.left span {
    color: #fff;
}

.left p {
    line-height: 1.7;
    color: #ddd;
}

/* CENTER */
.center {
    flex: 1;
}

.center h2 {
    color: #E68203;
    margin-bottom: 20px;
}

.item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.icon {
    font-size: 24px;
    color: #c89b6d;
}

/* RIGHT */
.right {
    flex: 1.2;
}

.right img {
    width: 100%;
    border-radius: 8px;
}