/* General Layout */
body {
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: #ffffff80;
    color: #050411;
    line-height: 1.7;
}

/* Container width for paragraphs */
.container {
    width: 70%;
    margin: 50px auto;
    padding: 0 20px;
}

/* Flexbox for Service Columns */
.services-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-column {
    flex-basis: calc(33.33% - 20px);
    min-width: 280px;
}

header, section, footer {
    margin-bottom: 80px;
}

/* Headings */
h1, h2, h3 {
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #050411;
}

h2 {
    font-size: 1.4rem;
    color: #050411;
    line-height: 1;
}

h3 {
    font-size: 1rem;
    color: #050411;
    line-height: 1;
}

/* Text and Links */
p, ul, li {
    color: #7a7a7a;
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 20px;
}

a {
    color: #ff5c57;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

a:hover {
    color: #7a7a7a;
    border-bottom: 2px solid #ff5c57;
}

/* Header */
header h1 {
    line-height: 1;
    margin: 0;
}

header p {
    margin: 0;
    font-size: 1.6rem;
}


/* Services */
.service-column ul {
    padding-inline-start: 20px;
}

.service-column li {
    margin-bottom: 0;
}

/* Footer */
footer {
    font-size: 0.9rem;
    color: #7a7a7a;
    border-top: 1px solid #7a7a7a;
    padding: 20px 0;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .service-column {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .container {
        width: 90%; /* Adjust container width on small screens */
    }
}

/* Fonts */

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}
