body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
.container10 {
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.breadcrumb12 {
    font-size: 14px;
    margin-bottom: 10px;
}
.breadcrumb12 a {
    text-decoration: none;
    color: rgb(255, 0, 0);
}
.breadcrumb12 a:hover {
    text-decoration: underline;
}
.header10 {
    background-color: rgb(255, 0, 0);
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
}
.subtitle10 {
    font-style: italic;
    text-align: center;
    margin: 10px 0;
    font-size: 16px;
    color: #666;
}
.profile10 {
    text-align: center;
    margin: 20px 0;
}
.profile10 img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgb(255, 0, 0);
}
.profile10 h3 {
    margin: 10px 0 5px;
    font-size: 20px;
    color: #333;
}
.profile10 p {
    margin: 0;
    font-size: 14px;
    color: #777;
}
.content10 {
    line-height: 1.8;
    text-align: justify;
    font-size: 15px;
}
.contact10 {
    background: #f0f0f0;
    padding: 15px;
    margin-top: 20px;
    border-left: 5px solid rgb(255, 0, 0);
}
.contact10 p {
    margin: 5px 0;
    font-size: 14px;
}
.contact10 strong {
    color: #333;
}
.note10 {
    margin-top: 15px;
    font-size: 14px;
    color: #d9534f;
    font-weight: bold;
}
/* ==============================
   CONTACT PAGE TWO-COLUMN LAYOUT
   ============================== */

.contact-wrapper10 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Left side form */
.contact-form10 {
    flex: 1 1 55%;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form10 h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form10 .form-group10 {
    margin-bottom: 15px;
}

.form10 label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form10 input,
.form10 textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.form10 input:focus,
.form10 textarea:focus {
    border-color: #007bff;
}

.btn10 {
    display: block;
    width: 100%;
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn10:hover {
    background: #0056b3;
}

/* Right side info */
.contact-details10 {
    flex: 1 1 40%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-details10 h3 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.contact-details10 p {
    font-size: 15px;
    margin: 10px 0;
}

.contact-details10 a {
    color: #ff0000;
    text-decoration: none;
}

.contact-details10 a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper10 {
        flex-direction: column;
    }
    .contact-form10, .contact-details10 {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container10 {
        padding: 15px;
    }
    .profile10 img {
        width: 100px;
        height: 100px;
    }
    .header10 {
        font-size: 16px;
    }
    .subtitle10 {
        font-size: 14px;
    }
    .content10 {
        font-size: 14px;
    }
    .contact10 p {
        font-size: 13px;
    }
}