@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");

/* Reset */
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Box Model */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* Basic */
html, body {
  min-height: 100vh;
  width: 100%;
}

body {
  background-color: #ffffff;
  color: #333333;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

body.is-preload * {
  animation: none !important;
  transition: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1em 0;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

p {
  margin: 0 0 1.5em 0;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1d4ed8;
}

strong, b {
  color: #1a1a1a;
  font-weight: 700;
}

/* Header */
#header {
  text-align: center;
  padding: 4rem 2rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#header .header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

#header .logo {
  height: 3.5rem;
  width: auto;
}

#header h1 {
  font-size: 2.5rem;
  margin: 0;
}

#header .tagline {
  color: #666666;
  font-size: 1.2rem;
  margin: 0;
}

/* Main Content */
#main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.content-section {
  margin-bottom: 4rem;
  text-align: center;
}

.content-section h2 {
  margin-bottom: 2rem;
}

.content-section p {
  color: #555555;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 1.5em auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
}

.service-icon img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.service-card h3 {
  color: #1a1a1a;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Contact Section */
.contact-email a {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Footer */
#footer {
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid #e5e7eb;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  list-style: none;
}

.social-icons a {
  color: #666666;
  font-size: 1.5rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #2563eb;
  transform: scale(1.1);
}

.social-icons .label {
  display: none;
}

.copyright {
  color: #999999;
  font-size: 0.9rem;
  margin: 0;
}

/* Icon */
.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

.icon.solid:before {
  font-weight: 900;
}

.icon.brands:before {
  font-family: 'Font Awesome 5 Brands';
}

/* Responsive Design */
@media screen and (max-width: 980px) {
  #header h1 {
    font-size: 2rem;
  }

  #header .logo {
    height: 3rem;
  }

  #header .tagline {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 736px) {
  #header {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }

  #header h1 {
    font-size: 1.75rem;
  }

  #header .logo {
    height: 2.5rem;
  }

  #main {
    padding: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icons a {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 480px) {
  #header {
    padding: 2rem 1rem 1rem 1rem;
  }

  #header h1 {
    font-size: 1.5rem;
  }

  #header .logo {
    height: 2rem;
  }

  #header .tagline {
    font-size: 0.9rem;
  }

  #main {
    padding: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}
