/* General Styles & Typography */
:root {
    --primary-color: #dd1324; /* A strong, appealing red */
    --secondary-color: #181818;
    --light-color: #f4f4f4;
    --dark-color: #143352;
    --font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 2px solid var(--light-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.call-button {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.call-button .icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.call-button:hover {
    background: #c62828;
}

/* Sections & Components */
main {
    padding-top: 2rem;
}

section {
    padding: 4rem 0;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #c62828;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1920x1080.png?text=Appliance+Repair+Background');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 8rem 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background-color: var(--light-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    max-width: 100px;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

.testimonial-slider {
    max-width: 800px;
    margin: 2rem auto 0;
}

.testimonial-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-color);
    color: #fff;
}

.contact-section h2 {
    color: #fff;
}

.contact-section p {
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-section form {
    max-width: 600px;
    margin: auto;
    display: grid;
    gap: 1rem;
}

.contact-section input, .contact-section textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-family: var(--font-family);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
        justify-content: center;
    }

    .nav-links li {
        margin: 0 10px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .call-button {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    .contact-section form {
        gap: 0.75rem;
    }
}

@media screen and (max-width: 560px) {
  .column {
    width: 100%;
    display: block;
  }
}
table, td {
  border: 1px solid black;
  border-collapse: collapse;
  text-align: center;
     padding-top: 12px;
    height: 50px;

}

 /* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
      
  }
}
.footer {
  position:;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color:rgb(226, 177, 0);
  color: rgb(11, 11, 11);
  text-align: center;
}