/* Global Styles */
body {
    margin: 0;
    padding: 0;
}
main {
    padding-top: 8rem;
}
a {
    color: ;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Importing Partials for Each Module */
@import url('partials/header.css');
@import url('partials/footer.css');
@import url('partials/hero.css');

/* Additional Global Styles */
h1 {
  font-size: 3em;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-weight: bold;
}

p {
    line-height: 1.6;
}

/* Half-Circle Styling */
#half-circle {
    display: block;
    position: relative;
    width: 100%;
    transform: scale(1, 1);
    margin-top: 1%;
}

#half-circle:before {
    content: "";
    display: block;
    position: absolute;
    height: 3rem;
    width: 100%;
    background-color: #13a89e;
    border-radius: 50% 50% 0 0;
    top: -3rem;
}

.two-column-container.normal {
  grid-template-areas: "image content";
}

.two-column-container.reverse {
  grid-template-areas: "content image";
}

/* Button Group */
.two-column-button-group {
    margin-top: 1.5rem;
}

/* Button Styles */
.two-col-bg-btn {
    border: 2px solid #0043ef;
    border-radius: .5rem;
    display: inline-block;
    margin-right: 1rem;
    padding: .8rem 1.6rem;
    text-decoration: none;
    transition: background-color .3s ease;
}

/* Shared Two-Column Layout */
.two-column-container {
    display: grid;
    grid-template-columns: 50% 50%; /* Two equal columns */
    max-width: 1500px;
    margin: auto;
    align-items: center;
    width: 100%;
}

.two-column-image {
  grid-area: image;
  margin: auto;
}

.two-column-content {
    grid-area: content;
    padding: 2rem;
    border-radius: 15px;
    margin: 4rem;
}

.two-column-image img {
    height: auto;
    object-fit: cover;
}

.two-column-rich-text {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .two-column-container {
        grid-template-columns: 1fr 1fr; /* Two columns for tablets */
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 0;
    }
    .two-column-container {
        grid-template-columns: 1fr; /* Stack columns vertically */
    }
    .two-column-content {
        margin: 1rem 0;
        padding: 1rem 0;
    }
.two-column-container.normal {
        grid-template-areas: "image"
          "content";
    }

.two-column-container.reverse {
        grid-template-areas: "image"
          "content";
    }

    .two-column-image img {
        width: 100%;
    }
  
    .left-column-content {
        border-radius: 15px;
  
}