/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF3E0; /* Light orange background */
    color: #333;
}

/* Header */
header {
    background: #FF9800; /* Bright orange */
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    margin: 0;
}

header p {
    font-size: 18px;
}

/* About Me Section */
.about-me {
    text-align: center;
    padding: 40px;
    background: white;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #FF9800; /* Orange highlight */
}

/* Profile Photo Styling */
.profile-photo {
    width: 200px;
    height: auto;
    border-radius: 50%;
    display: block;
    margin: 20px auto;
    border: 4px solid #FF9800; /* Orange border */
}

/* Features Section */
.features {
    text-align: center;
    padding: 40px;
    background: #FFE0B2; /* Lighter orange */
}

.feature-box {
    display: inline-block;
    width: 30%;
    margin: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid #FF9800; /* Orange bottom highlight */
}

.feature-box h3 {
    margin: 10px 0;
    color: #E65100; /* Darker orange */
}

/* Footer */
footer {
    background: #FF9800;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}