.profile-section {
    text-align: center;
    margin: 2rem 0;
}

.profile-image {
    width: 250px;  
    height: 250px; 
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff; /* Add a white border */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional: adds a subtle shadow */
}

.main-heading {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 2rem; /* Added top margin */
    font-size: 2.5rem;
    line-height: 1.2;
}

.highlight {
    color: #4169e1; /* Adjust this color to match your design */
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #4169e1;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.error-message {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 8px;
}