body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: #f4f6fa;
  color: #1a2233;
  margin: 0;
  padding: 0;
}

.DEVINETOUCH-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 16px rgba(37,99,235,0.08);
  backdrop-filter: blur(10px);
}

.DEVINETOUCH-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 80px;
}

.DEVINETOUCH-company-name {
  font-size: 2.1rem;
  font-weight: 900;
  color: #2563eb;
  letter-spacing: 0.04em;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  display: flex;
  align-items: center;
  height: 60px;
  user-select: none;
  white-space: nowrap;
}

.DEVINETOUCH-company-logo {
  width: 180px;
  height: 60px;
  background-image: url('img/company-logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}

.DEVINETOUCH-nav ul {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.DEVINETOUCH-nav a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
  font-size: 18px;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}

.DEVINETOUCH-nav a.active,
.DEVINETOUCH-nav a:hover {
  color: #ff9800;
}

main {
  padding: 0 80px;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 110px;
}

.DEVINETOUCH-news-hero {
  text-align: center;
  margin: 64px 0 56px 0;
}

.DEVINETOUCH-news-hero h1 {
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #2563eb;
}

.DEVINETOUCH-news-hero p {
  font-size: 22px;
  color: #444;
}

.DEVINETOUCH-news-section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.08);
  padding: 48px 44px 36px 44px;
  margin-bottom: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.DEVINETOUCH-news-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a2233;
  margin-bottom: 24px;
}

.DEVINETOUCH-news-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.DEVINETOUCH-news-card {
  background: #f4f6fa;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06);
  padding: 20px 18px 16px 18px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.DEVINETOUCH-news-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 10px;
}

.DEVINETOUCH-news-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}

.DEVINETOUCH-news-date {
  font-size: 13px;
  color: #888;
  align-self: flex-end;
}

.DEVINETOUCH-news-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
  display: block;
}

.DEVINETOUCH-footer {
  background: #1a2233;
  color: #fff;
  padding: 64px 0 32px 0;
  margin-top: 120px;
}

.DEVINETOUCH-footer-main {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 48px;
  padding: 0 80px;
}

.DEVINETOUCH-footer-col {
  flex: 1 1 0;
  min-width: 180px;
}

.DEVINETOUCH-footer-desc {
  flex: 2 1 0;
  font-size: 17px;
  color: #e5e7eb;
  line-height: 1.7;
  margin-right: 32px;
}

.DEVINETOUCH-footer-services h4,
.DEVINETOUCH-footer-company h4,
.DEVINETOUCH-footer-contact h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

.DEVINETOUCH-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.DEVINETOUCH-footer-col li {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 10px;
  line-height: 1.6;
}

.DEVINETOUCH-footer-contact li {
  word-break: break-all;
}

.DEVINETOUCH-footer-copyright {
  text-align: center;
  color: #b0b6c3;
  font-size: 15px;
  margin-top: 48px;
  letter-spacing: 0.5px;
}

@media (max-width: 1100px) {
  .DEVINETOUCH-header-inner, main {
    padding-left: 18px;
    padding-right: 18px;
  }
  .DEVINETOUCH-footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 0 18px;
  }
  .DEVINETOUCH-footer-desc {
    margin-right: 0;
  }
  .DEVINETOUCH-news-list {
    flex-direction: column;
    gap: 18px;
  }
  .DEVINETOUCH-news-card {
    min-width: 0;
    max-width: 100%;
  }
  .DEVINETOUCH-news-section {
    padding: 32px 12px 24px 12px;
  }
}

@media (max-width: 600px) {
  .DEVINETOUCH-header-inner {
    flex-direction: column;
    gap: 1em;
    padding: 0.7em 0.5em;
  }
  .DEVINETOUCH-company-name {
    font-size: 1.2rem;
    height: 40px;
  }
}
