body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #1abc9c;
    color: #fff;
    text-align: center;
    padding: 2rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

nav {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 1rem;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

main {
    max-width: 960px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.intro,
.map-preview,
.about-us {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.intro h2,
.map-preview h2,
.about-us h2 {
    color: #1abc9c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.intro p,
.map-preview p,
.about-us p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.intro,
.map-preview {
    margin-bottom: 2rem;
}

.intro h2,
.map-preview h2 {
    color: #1abc9c;
}

.map-preview a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    background-color: #ddd;
    padding: 1rem 0;
}

.about-us {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.about-us h2 {
    color: #1abc9c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.intro,
.map-preview,
.about-us {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.intro:hover,
.map-preview:hover,
.about-us:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.intro h2,
.map-preview h2,
.about-us h2 {
    color: #1abc9c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.intro p,
.map-preview p,
.about-us p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.image-container {
    text-align: center;
}

.image-container img {
    max-width: 50%;
    height: auto;
    border-radius: 5px;
    margin-top: 1rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Button */
.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #b1dae7;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #234567;
}

.cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #234567;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    background: #b1dae7;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.95);
}