.co-hero {
    background: var(--accent-color);
    padding: 4rem 10%;
    text-align: center;
}
.co-hero .section-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
}
.co-hero h1 {
    color: white;
    margin-bottom: 0.5rem;
}
.co-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.co-body {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    padding: 3rem 5%;
    align-items: start;
}

/* Info cards */
.co-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.co-info-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.co-info-icon {
    font-size: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #e1f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.co-info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    margin: 0 0 4px;
}
.co-info-card p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Form card */
.co-form-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2rem;
}
.co-form-card h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.co-field {
    margin-bottom: 1.25rem;
}
.co-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}
.co-field input,
.co-field select,
.co-field textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    background: #fafafa;
    transition: border 0.2s;
}
.co-field input:focus,
.co-field select:focus,
.co-field textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}
.co-field textarea {
    min-height: 120px;
    resize: vertical;
}
.co-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.co-form-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}
.co-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin: 0.75rem 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .co-body {
        grid-template-columns: 1fr;
    }
    .co-hero {
        padding: 3rem 5%;
    }
}
@media (max-width: 480px) {
    .co-row {
        grid-template-columns: 1fr;
    }
}