body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    color: #f1f1f1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Navigation Bar */
.navbar {
    background-color: #2c2c2c;
    padding: 10px 0;
    text-align: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ff5c5c;
    font-size: 1.5em;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-button {
    background-color: #ff5c5c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.nav-button:hover {
    background-color: #ff3d3d;
}

/* Hero Section */
.hero-banner {
    background-image: url('apex-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero-banner h1 {
    font-size: 2.5em;
}

.hero-banner p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.cta-button {
    background-color: #ff5c5c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.services-grid, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.service-item, .review-item {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.service-item h3 {
    margin-top: 0;
}

.service-link {
    color: #ff5c5c;
    text-decoration: none;
    font-weight: bold;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #ff5c5c;
    text-decoration: none;
}

/* Service Calculator Styles */
.service-calculator {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.calculator-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 1.1em;
}

select, input[type="checkbox"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #3c3c3c;
    color: #fff;
}

.price-display {
    font-size: 1.5em;
    text-align: center;
    margin-top: 20px;
}

#total-price {
    font-weight: bold;
    color: #ff5c5c;
}
/* Styling for Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.service-item h3 {
    margin-top: 0;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ff5c5c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.service-link:hover {
    background-color: #ff3d3d;
}

/* Styling for Price Lists */
.price-list {
    margin-top: 30px;
    padding: 20px;
    background-color: #1c1c1c;
    border-radius: 10px;
}

.hidden {
    display: none;
}

/* Badge Boosting Styles */
/* Consistent Style for Service Sections */
.service-calculator {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.calculator-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

select, input[type="checkbox"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #3c3c3c;
    color: #fff;
}

.price-display {
    font-size: 1.5em;
    text-align: center;
    margin-top: 20px;
}

#badge-total-price {
    font-weight: bold;
    color: #ff5c5c;
}

/* Contact Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.contact-item h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #f1f1f1;
}

.contact-item p a {
    color: #ff5c5c;
    text-decoration: none;
}

.contact-item p a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    background-color: #1c1c1c;
    color: #f1f1f1;
}

.footer-links a {
    margin: 0 10px;
    color: #ff5c5c;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
