body, h1, h2, h3, p, a, .services img {
    margin: 0;
    padding: 0;
    border: 0;
}

h2 {
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #3273a8;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.header img {
    width: 100%;
    height: auto;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
}

.service {
    width: 400px; /* Fixed width for all cards */
    margin: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service img {
    width: 100%;
    height: auto;
}

.service-text {
    padding: 20px;
    flex-grow: 1;
}

.service-text h2 {
    min-height: 100px;
}

.service h2 {
    color: #3273a8;
    margin-bottom: 10px;
}

.pricing {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.pricing h2 {
    color: #3273a8;
    margin-bottom: 20px;
}

.price-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    width: 200px; /* Fixed width for all cards */
    margin: 10px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    color: #3273a8;
    margin-bottom: 10px;
}

.price-card p {
    margin-bottom: 10px;
}

.about-me {
    padding: 20px;
    background-color: #fff;
}

.about-me-text {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about-me a {
    color: #3273a8;
}

/* Responsive styles */
@media (max-width: 768px) {
    .services, .price-cards {
        flex-direction: column;
        align-items: center;
    }

    .service, .price-card {
        width: 90%; /* Ensure the cards are not too wide on mobile */
        margin: 10px 0;
    }

    .service-text {
        padding: 10px;
    }
}

.price-line {
    height: 40px;
    padding: 5px;
    font-size: 28px;
    font-weight: 400;
}

.price-card p, 
.price-card h3 {
    height: 90px;
} 

/* New .about-me styles */
.about-me {
    padding: 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-me h2 {
    text-align: center;
}

.about-me-content {
    max-width: 600px;
    text-align: justify;
}

.about-me a {
    color: #3273a8;
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-me {
        padding: 10px;
    }

    .about-me-content {
        max-width: 90%;
    }
}

/* New .location styles */
.location {
    padding: 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.location-content {
    max-width: 600px;
    text-align: justify;
}

.location h2 {
    color: #3273a8;
    margin-bottom: 10px;
}

.map-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.service-text p {
    text-align: justify;
}

.order-btn {
    background-color: #3273a8;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.8s;
}

.order-btn:hover {
    background-color: #285a8a;
}
