body {
    margin: 0;
    background-color: black; 
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
}


.page {
    width: 210mm;
    min-height: 300mm;
    background-color: white; 
    margin: 40px auto;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}


.header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.header img {
    width: 120px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.header h1 {
    margin: 0;
    font-size: 26px;
    color: #1a2d85;
}

.header p {
    margin: 4px 0;
    font-size: 15px;
    color: #333;
}


hr {
    border: none;
    border-top: 2px solid red;
    margin: 15px 0 25px;
}


.section {
    margin-bottom: 25px;
}

.section h2 {
    color: #1a2d85;
    font-size: 20px;
    margin-bottom: 10px;
}


.two-columns {
    display: flex;
    gap: 40px;
}

.two-columns .section {
    flex: 1;
}


.skills ul {
    list-style-type: none;
    padding-left: 0;
}

.skills li {
    margin-bottom: 6px;
}


p, li {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}
