body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('HasanAI.jpg');
    background-size: contain;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #050608;
    color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

header {
    color: #fff;
    padding: 20px;
    text-align: left; /* Align text to the left */
    margin-left: 5%;
    box-sizing: border-box;
}

header h1 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    word-break: break-word;
}

header p {
    margin-bottom: 0px;
    word-break: break-word;
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 5vh;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.hero {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 95%;
    width: 100%;
    box-sizing: border-box;
    margin-left: 5%;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-image {
    display: none;
}

.hero-info {
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-info h2 {
    font-family: 'Playfair Display', serif;
    color: #ddd;
    margin-bottom: 15px;
    word-break: break-word;
}

.hero-info p {
    margin-bottom: 20px;
    color: #ccc;
    word-break: break-word;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: left;
}

.social-links a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (min-width: 768px) {
    .main {
        justify-content: flex-start;
    }
    .hero {
        flex-direction: row;
        text-align: left;
        margin-left: 5%;
        max-width: 90%;
    }
    /* Removed the header style from here as it's now in the base style */
}

@media (min-width: 1024px) {
    .hero {
        max-width: 65%;
    }
    .hero-info {
        max-width: 500px;
    }
}