
/* Container */
.ct-form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Form fields */
#ct-form input[type="text"],
#ct-form input[type="email"],
#ct-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 0.5rem;
    box-sizing: border-box;
}

/* Submit button */
#ct-form button {
    background: #0073aa;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
#ct-form button:hover {
    background: #005a87;
}

/* Message */
#ct-message {
    margin-top: 1rem;
    font-weight: bold;
    color: #0073aa;
}

/* Testimonials */
.ct-testimonials {
    display: grid;
    grid-gap: 2rem;
    max-width: 800px;
    margin: 2rem auto;
}
.ct-single-testimonial {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.ct-single-testimonial .ct-content {
    font-style: italic;
    margin-bottom: 1rem;
}
.ct-single-testimonial .ct-name {
    text-align: right;
    font-weight: bold;
    margin: 0;
    color: #333;
}
