/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.main-content {
    padding: 80px 20px 20px 20px; /* Adjust padding to account for the fixed toolbar */
    flex: 1;
}

.footer {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
    position: relative;
    z-index: 1000;
}

.hero {
    background: linear-gradient(135deg, #3b82f6, #1f2937);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.about {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1f2937;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
}

.about h3 {
    font-size: 28px;
    margin-top: 30px;
    color: #374151;
}

.about p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.profile-photo {
    float: left;
    margin-right: 20px;
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive About Styles */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .profile-photo {
        width: 200px;
        max-height: 200px;
    }
}