/* Global Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

/* Section Styling */
.profile-section {
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
}

/* Container Layout */
.profile-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

/* Image Styling */
.profile-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

/* Content Styling */
.profile-content {
    flex: 1;
}

.profile-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #B22222;
    text-transform: capitalize;
}

.profile-description {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.profile-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #B22222;
    color: #fff;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.profile-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
    }

    .profile-image img {
        margin-bottom: 20px;
    }

    .profile-content {
        text-align: center;
    }
}
