/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #151c27; /* Updated with the ProxCen logo background color */
    color: white;
    padding: 1rem;
    text-align: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    margin-right: 15px;
}

.company-name h1 {
    font-size: 1.8em;
    color: #ffda79;
    margin: 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5rem;
    color: #ffda79;
    font-weight: bold;
    text-decoration: none;
}

header ul {
    display: flex;
    list-style: none;
}

header ul li {
    margin: 0 1rem;
}

header ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header ul li a:hover {
    color: #ffda79;
}

/* Hero Section */
.hero {
    background-color: #151c27; /* Updated with the ProxCen logo background color */
    color: white;
    padding: 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.cta {
    background-color: #ffda79;
    color: #05192D; /* Updated */
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta:hover {
    background-color: #ffcc5a;
    color: #031322;
}

/* Services Overview */
.services-overview {
    padding: 2rem;
    text-align: center;
}

.service {
    margin: 1rem 0;
}

/* Footer */
footer {
    background-color: #151c27; /* Updated with the ProxCen logo background color */
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex; /* Use flexbox to align items */
    justify-content: space-between; /* Space between the items */
    align-items: center; /* Center items vertically */
}

.footer-content p {
    margin: 0; /* Remove default margin */
}

.footer-content a {
    color: white; /* White color for the link */
    text-decoration: none; /* Remove underline */
}

.footer-content a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #05192D;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin: 0.5rem 0 0.2rem 0;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #ffda79;
    color: #05192D;
    border: none;
    padding: 0.7rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #ffcc5a;
}

/* Services Section */
.services-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.services-section h1 {
    text-align: center;
    color: #05192D;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-logo {
    width: 80px;
    height: 80px;
    margin-right: 1.5rem;
}

.service-content {
    max-width: 900px;
}

.service-content h2 a {
    color: #05192D;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.service-content h2 a:hover {
    color: #ffda79;
}

.service-content p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.testimonials-section h1 {
    text-align: center;
    color: #05192D;
    margin-bottom: 2rem;
}

.testimonial-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 1.5rem;
    object-fit: cover;
}

.testimonial-content {
    max-width: 900px;
}

.testimonial-content h2 {
    color: #05192D;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.testimonial-content p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #333;
}

