body {
    font-family: Inter, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photo {
    flex: 1 1 30%;
    text-align: center;
}

.photo img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    border-radius: 8px;
    border: 4px solid #d463cd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.content {
    flex: 1 1 65%;
    padding: 20px;
}

.content h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.content p {
    text-align: justify;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .content {
        text-align: center;
        padding: 10px;
    }

    .photo {
        margin-bottom: 20px;
    }
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-top: 20px;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #d463cd;
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.dropbtn:hover {
    background-color: #bc73bc;
}

.home-content {
    display: none;
    position: absolute;
    background-color: #f0e8ee;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 5px;
}

.home-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.home-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .home-content {
    display: block;
}

.social-media {
    text-align: center;
    margin-top: 30px;
}

.social-media a {
    color: #2c3e50;
    text-decoration: none;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #d463cd;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    .social-media a {
        font-size: 20px;
    }
}

h5 {
    text-align: center;
    color: #34495e;
}

.home,
.about,
.projects,
.contact {
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

p {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}
