.about-me {
    margin-top: 15px;
}

.contact-container {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 13.5vh auto;
    padding: 2rem;
    background: var(--background, #ffffff);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.contact-form {
    flex: 1;
    padding: 1rem;
    border: solid 3px var(--text, #17275e);
    border-radius: 10px;
}

    .contact-form h2 {
        margin-top: 20px;
        margin-bottom: 0.5rem;
        font-size: 2rem;
        color: #f5478a;
        font-family: "Racing Sans One", sans-serif;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 0.75rem;
        border: 2px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        font-family: inherit;
    }

    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
    }

    .contact-form label {
        text-align: left;
        font-weight: bold;  
}

.contact-form button {
    padding: 0.75rem;
    background: #f77aaa;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-family: "Racing Sans One", sans-serif;
    cursor: pointer;
    transition: 0.3s ease;
}

    .contact-form button:hover {
        background: #f5478a;
        transform: translateY(-2px);
    }

.contact-details {
    flex: 1;
    padding: 1rem;
    margin-top: 160px; 
}

    .contact-details h2 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
        color: #f5478a;
        font-family: "Racing Sans One", sans-serif;
    }

    .contact-details p {
        margin: 0.5rem 0;
        line-height: 1.6;
        color: var(--text, #17275e);
    }

    .contact-details a {
        text-decoration: none;
        color: var(--text, #17275e);
    }

.social-links {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

    .social-links a {
        color: #f77aaa;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }

        .social-links a:hover {
            color: #f5478a;
        }

@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
        margin-top: 50px;
        padding: 1.5rem;
        margin-left: 15px;
        margin-right: 15px;
    }

    .contact-details {
        margin-top: 10px;
        text-align: center;
    }
}
