﻿#about-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 70px;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
}

#about-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;

}

#about-content {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;

  
}
#citation{
    display: flex;
    flex-direction:column;
    align-items: center;
}
#next-citation{
 
    text-align:center;
}
#about-text {
    display: flex; 
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center; 
    padding: 0 40px; 
}


#about-photo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

    #about-photo img {
  
        max-width: 100%;
        height: auto;
        border-radius: 2px;
        border-radius: 5px;
    }


@media (max-width: 768px) {
    #about-content {
        flex-direction: column;
        text-align: center;
    }

    #about-photo {
        justify-content: center;
    }
    #about-text{
        padding:0px;
    }
}
@media (max-width: 768px) {
    #main-text-about {
        font-size: 37px;
        color: #293745 !important;
        padding-bottom: 20px;
    }
}






.contact-form-wrapper {
    flex: 1;
    width: 100%; 
    max-width: none; 
    margin-top:1%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.contact__title {
    margin-bottom:50px;

    font-size: 60px;
    color: #293745;
    text-align: center;
}

.contact__form {
    width: 50%;
    max-width: 50%; 
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 16px;
}

.contact__field label {
    font-size: 15px;
    margin-bottom: 6px;
    display: block;
    color: #293745;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dbe3ea;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.4;
    background: #fff;
}

    .contact__field input:focus,
    .contact__field textarea:focus {
        border-color: #293745;
        outline: none;
    }

.contact__submit {
    font-size: 18px;
    padding: 12px 25px;
    background: #f56b31;
    color: #fff;
    border: 1px solid #f56b31;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease;
    align-self: center;
    width: fit-content;
}

    .contact__submit:hover {
        background: transparent;
        color: #293745;
        border-color: #293745;
    }

@media (max-width: 768px) {
    .contact__row {
        grid-template-columns: 1fr; 
    }


    .contact__form {
        width: 100%;
        max-width: 100%;
    }

    }
