```css
/* Resume Page Styles */
.user-resume {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header Section - Center and Style the Name */
.layout__region:first-child {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #333;
}

/* Style the name fields specifically */
.resume-first-name,
.resume-last-name {
  display: inline;
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin: 0 5px;
}

/* If the fields have labels, hide them */
.resume-first-name .field__label,
.resume-last-name .field__label {
  display: none;
}

/* Make sure name fields appear on same line */
.resume-first-name .field__item,
.resume-last-name .field__item {
  display: inline;
}

/* Alternative: If you need to target by field name */
.field--name-field-first-name,
.field--name-field-last-name {
  display: inline;
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
}

/* Skills Section Spacing */
.skills-section {
  margin: 40px 0;
}

.skills-heading {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #666;
  padding-bottom: 10px;
}

/* Skills Table Styling */
.skills-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.skills-table thead {
  background-color: #f0f0f0;
}

.skills-table th {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
}

.skills-table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #fff;
}

.skills-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.skills-table tbody tr:hover {
  background-color: #f0f0f0;
  transition: background-color 0.2s;
}

/* Contact/Profile Fields */
.resume-body .field {
  margin-bottom: 20px;
}

.resume-body .field__label {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 5px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .resume-first-name,
  .resume-last-name,
  .field--name-field-first-name,
  .field--name-field-last-name {
    font-size: 2em;
  }
  
  .skills-table {
    font-size: 0.9em;
  }
  
  .skills-table th,
  .skills-table td {
    padding: 8px 10px;
  }
}
```
