body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0f1b2d, #7a4f01);
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero {
    padding: 60px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.left img {
    width: 350px;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.right {
    flex: 1;
    padding-left: 40px;
}

h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

h2 {
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffd700;
}

.identity {
    font-size: 16px;
    margin-bottom: 25px;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    margin-bottom: 8px;
}

.links {
    margin-top: 20px;
}

.links a {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 10px 18px;
    background-color: #ffd700;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.links a:hover {
    background-color: #ffffff;
}

.statement {
    margin-top: 25px;
    font-style: italic;
}

.about {
    background-color: #111;
    padding: 50px 0;
}

.about h3 {
    margin-bottom: 15px;
    color: #ffd700;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    font-size: 14px;
}

/* Responsive */

@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .right {
        padding-left: 0;
        margin-top: 30px;
    }

    .left img {
        width: 250px;
    }
}