/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li, table, th, td {
    margin: 0;
    padding: 0;
    list-style: none;
    border-collapse: collapse;
}

/* Set base font and background */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff; /* White background */
    color: #333333; /* Dark gray text color */
    margin: 0;
    padding: 0;
}

/* Container styles */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    background: #f8f9fa; /* Off-white background */
    color: #333333; /* Dark gray text color */
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2em;
    margin-bottom: 0.3em;
}

header p {
    font-size: 1.1em;
}

/* Call to action section styles */
.call-to-action {
    text-align: center;
    background: #ffffff; /* White background */
    color: #333333; /* Dark gray text color */
    padding: 20px;
    margin: 20px 0;
}

.call-to-action h2 {
    font-size: 1.8em;
    margin-bottom: 0.3em;
}

.call-to-action p {
    font-size: 1em;
    margin-bottom: 0.8em;
}

.call-to-action a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #333333; /* Dark gray background */
    color: #ffffff; /* White text color */
    text-decoration: none;
    border-radius: 5px;
}

.call-to-action a:hover {
    background: #555555; /* Darker gray for hover */
}

/* About section styles */
#about {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
}

#about h2 {
    font-size: 1.8em;
    margin-bottom: 0.3em;
}

#about p {
    font-size: 1em;
    margin-bottom: 1em;
}

#about a {
    color: #333333; /* Dark gray text color */
    text-decoration: none;
}

#about a:hover {
    text-decoration: underline;
}

/* Services section styles */
#services {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
}

#services h2 {
    font-size: 1.8em;
    margin-bottom: 0.3em;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    background: #f8f9fa; /* Off-white background */
    color: #333333; /* Dark gray text color */
    flex: 1 1 calc(33.333% - 20px);
    padding: 20px;
    border-radius: 5px;
    box-sizing: border-box;
}

.service h3 {
    font-size: 1.5em;
    margin-bottom: 0.3em;
}

.service p {
    font-size: 1em;
}

/* Price table styles */
#price {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
}

#price h2 {
    font-size: 1.8em;
    margin-bottom: 0.3em;
}

.price-table {
    width: 100%;
    border: 1px solid #dddddd; /* Light gray border */
}

.price-table th, .price-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #dddddd; /* Light gray border */
}

.price-table th {
    background: #f8f9fa; /* Off-white background */
    color: #333333; /* Dark gray text color */
}

.price-table td {
    background: #ffffff;
}

.price-table em {
    display: block;
    margin-top: 10px;
    color: #777777; /* Light gray text */
}

/* FAQ section styles */
#faq {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
}

#faq h2 {
    font-size: 1.8em;
    margin-bottom: 0.3em;
}

#faq div {
    margin-bottom: 1em;
}

#faq h3 {
    font-size: 1.5em;
    margin-bottom: 0.3em;
}

#faq p {
    font-size: 1em;
}

/* Footer styles */
footer {
    background: #f8f9fa; /* Off-white background */
    color: #333333; /* Dark gray text color */
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
}

footer li {
    display: inline;
    margin: 0 10px;
}

footer a {
    color: #333333; /* Dark gray text color */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
