Contact information
/* ===== Container ===== */
.contact-container {
max-width: 700px;
margin: 0 auto;
padding: 50px 20px;
font-family: Arial, sans-serif;
color: #222;
line-height: 1.7;
text-align: center;
}
/* ===== Headings ===== */
.contact-container h1 {
font-size: 36px;
margin-bottom: 30px;
color: #111;
}
.contact-container h2 {
font-size: 24px;
margin-top: 25px;
margin-bottom: 15px;
color: #333;
}
/* ===== Contact Items ===== */
.contact-item {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
gap: 12px;
font-size: 18px;
}
.contact-item a {
color: #007BFF;
text-decoration: none;
}
.contact-item a:hover {
text-decoration: underline;
}
/* ===== Icons ===== */
.contact-item i {
font-size: 22px;
color: #007BFF;
}
/* ===== Social Links ===== */
.social-links {
display: flex;
justify-content: center;
gap: 25px;
margin-top: 15px;
}
.social-links a {
font-size: 22px;
color: #007BFF;
transition: transform 0.2s;
}
.social-links a:hover {
transform: scale(1.2);
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
.contact-container h1 {
font-size: 30px;
}
.contact-container h2 {
font-size: 20px;
}
.contact-item {
flex-direction: column;
gap: 6px;
font-size: 16px;
}
.social-links {
gap: 15px;
}
}