/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    color: #222;
    text-align: center;
}

/* Header Styling */
header {
    background-color: #222;
    color: white;
    padding: 15px 0;
    text-align: center;
}

header h1 {
    color: #FFC000; /* Primary color emphasis */
    margin-bottom: 5px;
}

/* Call-to-Action / Hero Section */
#hero {
    text-align: center;
    padding: 60px 0;
    background-color: white;
}

.appliance-emojis span {
    font-size: 1.5em;
    margin: 0 10px;
    display: inline-block;
}

/* Button Styling (Primary Color) */
.btn-primary {
    display: inline-block;
    background-color: #FFC000; /* Primary color */
    color: #333;
    padding: 20px 40px;
    margin: 30px auto 15px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.5em;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.1s;
    border: 3px solid #e0ac00; /* Slightly darker border for depth */
}

.btn-primary:hover {
    background-color: #e0ac00; /* Slightly darker on hover */
    transform: translateY(-2px);
}

.btn-primary span {
    display: block;
    font-size: 0.8em;
    font-weight: 400;
    margin-top: 5px;
}

.emphasis {
    font-size: 1.2em;
    color: #d63031; /* Use a standout color for emphasis on the 'MUST call' part */
    font-weight: 700;
}

/* Why Us / Features Section */
#why-us {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.features {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.features div {
    flex: 1;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Reviews Section */
#reviews {
    padding: 40px 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.review-card {
    background-color: white;
    padding: 25px;
    border-left: 5px solid #FFC000; /* Primary color highlight */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-card p {
    font-style: italic;
}

.reviewer {
    text-align: right;
    font-weight: 700;
    margin-top: 10px;
    color: #666;
}

/* Contact Form Section */
#contact {
    padding: 40px 0;
    background-color: #e8e8e8;
}

#contact h2 {
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Includes padding in the element's total width and height */
}

textarea {
    resize: vertical;
}

.btn-submit {
    display: block;
    width: 100%;
    background-color: #4CAF50; /* A contrasting color for the form button */
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #45a049;
}

.note {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 15px;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: #ccc;
    padding: 20px 0;
    font-size: 0.85em;
    text-align: center;
}

.disclaimer {
    margin-bottom: 15px;
    padding: 0 10px;
    line-height: 1.4;
}

footer a {
    color: #FFC000;
    text-decoration: none;
}