.cf-contact-hero {
background: linear-gradient(135deg, #1f3f73 0%, #2d5aa0 100%);
padding: 80px 40px;
text-align: center;
color: #fff;
border-radius: 16px;
margin-bottom: 60px;
}
.cf-contact-hero h1 {
font-size: 2.5rem;
font-weight: 800;
color: #fff;
margin: 0 0 16px;
}
.cf-contact-hero p {
font-size: 1.1rem;
color: rgba(255,255,255,0.85);
max-width: 500px;
margin: 0 auto;
line-height: 1.7;
}
.cf-contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start;
}
.cf-contact-info h2 {
font-size: 1.6rem;
font-weight: 800;
color: #111827;
margin-bottom: 20px;
}
.cf-contact-info p {
font-size: 1rem;
line-height: 1.8;
color: #4b5563;
margin-bottom: 32px;
}
.cf-contact-card {
display: flex;
align-items: center;
gap: 16px;
background: #fff;
border-radius: 14px;
padding: 24px;
box-shadow: 0 2px 12px rgba(0,0,0,0.07);
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
margin-bottom: 16px;
}
.cf-contact-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.cf-contact-icon {
width: 52px;
height: 52px;
background: #fef2f2;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 1.5rem;
}
.cf-contact-card-info strong {
display: block;
font-size: 0.85rem;
font-weight: 700;
color: #6b7280;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 4px;
}
.cf-contact-card-info span {
font-size: 1rem;
font-weight: 600;
color: #cc0000;
}
.cf-contact-image {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.cf-contact-image img {
width: 100%;
height: 420px;
object-fit: contain;
display: block;
background: #f8fafc;
}
.cf-contact-note {
margin-top: 60px;
background: #f8fafc;
border-radius: 14px;
padding: 32px 40px;
text-align: center;
border-top: 3px solid #cc0000;
}
.cf-contact-note p {
font-size: 0.95rem;
color: #6b7280;
line-height: 1.7;
margin: 0;
}
@media (max-width: 768px) {
.cf-contact-hero { padding: 50px 20px; }
.cf-contact-hero h1 { font-size: 1.8rem; }
.cf-contact-grid { grid-template-columns: 1fr; }
.cf-contact-note { padding: 24px 20px; }
}