* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

.blob-2 {
    position: fixed;
    width: 300px;
    height: 300px;
    background-color: #dec2ba;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    animation: blobAnimation 20s infinite alternate;
}

.blob-top-left-2 {
    top: -150px;
    left: -150px;
    animation-delay: -10s;
}

.blob-bottom-right-2 {
    bottom: -150px;
    right: -150px;
}

@keyframes blobAnimation {
    0% {
        border-radius: 50%;
    }
    25% {
        border-radius: 60% 40% 70% 30% / 30% 60% 40% 70%;
    }
    50% {
        border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
    }
    75% {
        border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    }
    100% {
        border-radius: 50%;
    }
}

.contact-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #230f20;
    font-size: 2rem;
}

p {
    text-align: justify;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form-2 {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 1.2rem;
    color: #111;
    transition: all 0.3s ease;
    pointer-events: none;
}

#name,
#email,
#message {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #230f20;
    border-radius: 4px;
    font-size: 1.2rem;
    outline-color: #230f20;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #230f20;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


/* Media Queries */
@media screen and (max-width: 1200px) {
    .blob {
        width: 250px;
        height: 250px;
    }

    .contact-container {
        margin-top: 4rem;
        margin-bottom: 4rem;
        padding: 2rem;
    }
}

@media screen and (max-width: 1000px) {
    .blob {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        padding: 1.5rem;
    }

    .blob {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 600px) {
    .blob {
        width: 100px;
        height: 100px;
    }

    input,
    textarea,
    .submit-btn {
        font-size: 0.9rem;
    }
}