/*
 * Global Stylesheet for Premier Resume Services
 *
 * This stylesheet defines the typography, layout and color palette for the
 * resume services website. It is designed to be clean, modern and fully
 * responsive, reflecting the professionalism of the service. Adjust values as
 * needed to match your brand identity.
 */

/* Basic resets */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}
h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
a {
  color: inherit;
}

/* Container ensures content is centered and constrained */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
header {
  background-color: #0B3D91;
  color: #fff;
  padding: 20px 0;
}
header .logo {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
nav ul li a:hover {
  opacity: 0.8;
}

/* Hero section */
.hero {
  background-color: #ffffff;
  padding: 60px 0;
}
.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content {
  max-width: 600px;
}
.hero-content h2 {
  font-size: 2.5rem;
  margin: 0 0 20px 0;
  color: #0B3D91;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-btn {
  background-color: #0B3D91;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.2s ease;
}
.cta-btn:hover {
  background-color: #062A69;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Services section */
.services {
  background-color: #f1f4fa;
  padding: 60px 0;
  text-align: center;
}
.services h2 {
  color: #0B3D91;
  margin-bottom: 40px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.service-cards .card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
}
.service-cards .card h3 {
  color: #0B3D91;
  margin-bottom: 10px;
}

/* Pricing section */
.pricing {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
.pricing h2 {
  color: #0B3D91;
  margin-bottom: 40px;
}
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.pricing-option {
  background-color: #f1f4fa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
}
.pricing-option h3 {
  color: #0B3D91;
  margin-bottom: 10px;
}
.pricing-option .price {
  font-size: 2rem;
  color: #062A69;
  margin: 10px 0;
}
.pricing-option ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-option ul li {
  margin: 5px 0;
}

/* Samples & testimonials section */
.samples {
  background-color: #f1f4fa;
  padding: 60px 0;
  text-align: center;
}
.samples h2 {
  color: #0B3D91;
  margin-bottom: 40px;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.testimonial {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 350px;
  font-style: italic;
}
.testimonial span {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: bold;
  color: #0B3D91;
}

/* Contact / order form section */
.contact {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
.contact h2 {
  color: #0B3D91;
  margin-bottom: 20px;
}
.contact p {
  margin-bottom: 30px;
}
form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 15px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button[type="submit"] {
  background-color: #0B3D91;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
button[type="submit"]:hover {
  background-color: #062A69;
}

/* Footer */
footer {
  background-color: #0B3D91;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    align-items: center;
  }
  .service-cards,
  .pricing-tables,
  .testimonials {
    flex-direction: column;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}