* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Header */
.header {
  text-align: center;
  padding: 50px 20px 20px;
}

.logo {
  max-width: 250px;
}

/* Layout */
.container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #f9fafb;
}

h2 {
  margin-bottom: 15px;
  color: #cbd5f5;
}

/* Contact Box */
.contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

/* Each item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1e293b;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #e5e7eb;
  transition: all 0.25s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}

.contact-item:hover {
  transform: translateY(-2px);
  background: #273449;
}

/* Icon */
.icon {
  width: 32px;          /* fixed width */
  display: flex;
  justify-content: center;
  font-size: 20px;
}
/* Text */
.text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* IMPORTANT */
}

.label {
  font-size: 12px;
  color: #9ca3af;
}

.value {
  font-size: 16px;
  font-weight: 600;
  color: #f9fafb;
}

/* Buttons */
.download-section {
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: block;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* AnyDesk - RED */
.btn.primary {
  background: #e53935;
  color: white;
  box-shadow: 0 4px 15px rgba(229,57,53,0.4);
}

.btn.primary:hover {
  background: #ff4d4f;
  transform: translateY(-2px);
}

/* RustDesk - LIGHT BLUE */
.btn.secondary {
  background: #38bdf8;
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(56,189,248,0.4);
}

.btn.secondary:hover {
  background: #60d4ff;
  transform: translateY(-2px);
}

/* Links */
.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
}

.links a:hover {
  color: #e5e7eb;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #6b7280;
}

/* Responsive */
@media (min-width: 600px) {
  .buttons {
    flex-direction: row;
  }

  .btn {
    flex: 1;
  }
}

/* Projects Section */
.projects {
  margin-top: 40px;
  text-align: left;
}

.projects h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Grid */
.project-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card */
.project-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  padding: 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #e5e7eb;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.project-card:hover {
  transform: translateY(-3px);
  background: #273449;
}

/* Content */
.project-content h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #f9fafb;
}

.project-content p {
  font-size: 13px;
  color: #9ca3af;
}

/* Arrow */
.arrow {
  font-size: 20px;
  color: #60a5fa;
  transition: transform 0.2s;
}

.project-card:hover .arrow {
  transform: translateX(5px);
}

/* Desktop */
@media (min-width: 600px) {
  .project-grid {
    flex-direction: row;
  }

  .project-card {
    flex: 1;
  }
}