
/* contact page */

.contact-icon-title {
        color: #42488D;

}

.contact-item a {
  color: white;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* General section styling */
#contactpage {
  padding: 60px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Grid container */
.contact-container-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
}

/* Left Column: Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
}

.contact-form button.exclusive-button {
  padding: 12px;
  border: none;
  cursor: pointer;
}

/* Right Column: Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h2 {
  font-size: 24px;
  font-weight: bold;
}

.contact-info p {
  font-size: 16px;
}

/* Table styling */
.contact-info table {
  width: 100%;
  text-align: left;
}

.contact-info td {
  width: 50%;
  vertical-align: top;
}

.contact-icon-title {
  font-weight: bold;
}

.contact-info img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

/* Button and link styling */
.contact-form button.exclusive-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #A6CE39; /* Orange button color */
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners for the button */
    transition: background-color 0.3s ease;
}

.contact-form button.exclusive-button:hover {
    background-color: #C85491; /* Darker orange on hover */
}


.contact-info a {
  color: #000000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}





/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .contact-container-page {
        grid-template-columns: 1fr; /* Stack the columns */
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 8px;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-info table {
        display: block;
        width: 100%;
        overflow-x: auto; /* Allow scrolling */
    }



    .contact-form button.exclusive-button {
        width: 100%; /* Make the button full-width */
        padding: 12px;
    }

    .contact-info img {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    /* Further adjustment for very small screens */
    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
        padding: 6px;
    }

    .contact-info h2 {
        font-size: 18px;
    }

    .contact-info p {
        font-size: 12px;
    }

    .contact-form button.exclusive-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}