body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #2e3b2e, #193719); /* Subtle dark green gradient */
    color: #e8f5e9; /* Light green for text */
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    width: 90%; 
    max-width: 1200px; 
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 43, 0, 0.8); /* Dark semi-transparent green */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 43, 0, 0.5); /* Green-toned shadow */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
}

.profile-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    box-shadow: 0 8px 15px rgba(0, 43, 0, 0.3); /* Slight shadow in green */
    margin-top: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 3rem;
    margin: 0;
    color: #a5d6a7; /* Softer green for headers */
}

#dynamic-text {
    font-size: 1.5rem;
    font-style: italic;
    color: #81c784; /* Highlight text with a medium green */
}

section {
    margin: 40px 0;
    text-align: left;
    padding: 20px;
    background: rgba(0, 43, 0, 0.6); /* Dark green transparent sections */
    border-radius: 10px;
}

.certifications-list {
    list-style: none;
    padding: 0;
    color: #e8f5e9; /* Lighter green for list items */
}

.skills-grid div {
    margin: 10px 0;
}

a {
    color: #66bb6a; /* Vibrant green for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #43a047; /* Slightly darker green for hover */
}

@media (max-width: 1450px) {
    header {
        display: flex; 
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-content,
    .profile-photo {
        width: 100%;
    }

    .profile-photo {
        margin-top: 20px;
        max-width: 100%;
        height: auto;
    }
}
