/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 900px; /* Adjust as needed */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 20px; /* Add padding to the sides for breathing space */
}

.container p {
    text-align: justify;
}

/* Header styles */
header {
    background-color: #270042;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #ff5733;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d1481e;
}

/* Section styles */
section {
    padding: 4rem 0;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Services styles */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 1rem;
}

/* Portfolio styles */
.portfolio-item {
    margin-bottom: 2rem;
}

.portfolio-item img {
    max-width: 100%;
    border-radius: 8px;
}

/* Testimonials styles */
.testimonial {
    margin-bottom: 2rem;
}

.testimonial p {
    font-style: italic;
}

.testimonial cite {
    font-weight: bold;
}

/* Footer styles */
footer {
    background-color: #270042;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}
