/* css/style.css */
/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
a { color: inherit; text-decoration: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; text-align: center; }
.site-header { background: #0066cc; color: #fff; padding: 1rem 0; }
.site-title { font-size: 2.5rem; }
.section { padding: 3rem 0; }
.bg-light { background: #f9f9f9; }
.about-paragraph { font-size: 1rem; max-width: 800px; margin: 1rem auto; }
h2 { margin-bottom: 1rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.card { background: #fff; padding: 2.5rem; border-radius: 0.75rem; box-shadow: 0 2px 10px rgba(0,0,0,0.1); text-align: left; }
.card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.service-examples { list-style: disc inside; padding-left: 1rem; margin: 0; }
.contact-text { margin-bottom: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; white-space: pre-line; }
.contact-buttons { display: flex; justify-content: center; gap: 1rem; }
.btn { padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-weight: bold; cursor: pointer; }
.contact-btn { background: #0066cc; color: #fff; border: none; }
.linkedin-btn { background: #0077b5; color: #fff; border: none; }
.site-footer { background: #222; color: #ccc; text-align: center; padding: 1rem 0; font-size: 0.9rem; }
@media (max-width: 768px) {
  .grid { grid-template-columns: 1fr; }
}
