:root {
    --primary-blue: #011925;
    --secondary-yellow: #af970b;
    --primary-button-blue: #012637;
    --dark-blue: #012637;
    --light-gray: #f8f9fa;
    --white-color: #ffffff;
}

/* #064868 */
/* #064a69 */
/* #FFEF99 */

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar {
    padding: 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
    color: var(--white-color);
}

.navbar-toggler {
    background-color: var(--white-color) !important;
    border-color: var(--white-color) !important;
}

.nav-link:focus, .nav-link:hover {
    color: var(--white-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--white-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:active:after, .nav-link:focus:after, .nav-link:hover:after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-button-blue);
    border-color: var(--primary-button-blue);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 71, 171, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-button-blue);
    color: var(--primary-blue);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-button-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 71, 171, 0.3);
}

.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.company-motto {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
    padding: 15px 20px;
    border-left: 4px solid var(--secondary-yellow);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 8px 8px 0;
}

.intro-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.name-highlight {
    display: inline-block;
    position: relative;
    font-weight: 700;
    color: var(--primary-blue);
}

.name-highlight:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-yellow);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.name-highlight.animate:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.name-explanation {
    background-color: rgba(0, 71, 171, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
}

.name-explanation:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: rgba(0, 71, 171, 0.05);
    transform: rotate(45deg);
}

.founders-note {
    font-style: italic;
    margin-top: 30px;
    padding: 15px 20px;
    border-radius: 10px;
    background-color: var(--light-gray);
}

.hero-intro {
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-intro p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.hero-name-highlight {
    font-weight: 700;
    color: var(--secondary-yellow);
    display: inline-block;
    position: relative;
}

.hero-name-explanation {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.hero-founders-note {
    font-style: italic;
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--secondary-yellow);
}

.conversation-bubble {
    background-color: white;
    color: #000000;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 auto;
}

.conversation-bubble:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50px;
    width: 30px;
    height: 30px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.highlight {
    color: var(--secondary-yellow);
    font-weight: 700;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 71, 171, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-size: 28px;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-blue);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px 0;
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(0, 71, 171, 0.1);
    font-family: Georgia, serif;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
}

.stats-box {
    text-align: center;
    padding: 30px 15px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}

.mission-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.mission-title {
    font-size: 2.5rem;
    margin: 0 auto 50px;
    color: var(--primary-blue);
    position: relative;
    text-align: center;
}

.mission-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: calc(50% - 90px);
    width: 180px;
    height: 4px;
    background-color: var(--secondary-yellow);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mission-text p {
    margin-bottom: 1.5rem;
}

.mission-highlight {
    font-weight: 700;
    color: var(--primary-blue);
}

.mission-quote {
    font-size: 1.3rem;
    font-style: italic;
    padding: 20px;
    border-left: 4px solid var(--secondary-yellow);
    margin: 30px 0;
    background-color: rgba(0, 71, 171, 0.05);
    border-radius: 0 8px 8px 0;
}

.mission-buttons {
    margin-top: 40px;
}

.why-work-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.why-work-title {
    font-size: 2.5rem;
    margin: 0 auto 50px;
    color: var(--primary-blue);
    position: relative;
    text-align: center;
}

.why-work-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: calc(50% - 40px);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-yellow);
}

.why-work-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.reason-card {
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reason-icon-head {
    display: flex;
    align-items: center;
}

.reason-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reason-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-left: 15px;
    color: var(--primary-blue);
}

.reason-text {
    font-size: 1rem;
    line-height: 1.6;
}

.divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.contact-cta {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 50px;
}

.contact-email {
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--dark-blue);
}

.contact-email:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.contact-email:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.why-work-illustration {
    max-width: 100%;
    height: auto;
}

.founders-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.founders-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
    position: relative;
    text-align: center;
}

.founders-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: calc(50% - 90px);
    width: 180px;
    height: 4px;
    background-color: var(--secondary-yellow);
}

.founders-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.founders-text p {
    margin-bottom: 1.5rem;
}

.founders-highlight {
    font-weight: 700;
    color: var(--primary-blue);
}

.founders-quote {
    font-size: 1.2rem;
    font-style: italic;
    padding: 20px;
    border-left: 4px solid var(--secondary-yellow);
    margin: 30px 0;
    background-color: rgba(0, 71, 171, 0.05);
    border-radius: 0 8px 8px 0;
}

.timeline-icon-head {
    display: flex;
    align-items: center;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid var(--secondary-yellow);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-left: 15px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 24px;
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background-color: #f2f2f2;
    position: relative;
}

.team-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.team-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: calc(50% - 40px);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-yellow);
}

.team-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.team-member {
    margin-bottom: 40px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-member:hover .team-member-img {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-yellow);
}

.team-member-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.team-member-position {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f2f2f2;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.team-member-social a:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.team-gallery {
    margin-top: 60px;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-gallery-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-blue);
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    background-color: #282828;
    color: #fff;
    padding: 20px 0 20px;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 52px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-yellow);
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.7);
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 53% 47% 32% 68% / 43% 47% 53% 57%;
    background-color: var(--secondary-yellow);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 41% 59% 41% 59% / 41% 42% 58% 59%;
    background-color: var(--secondary-yellow);
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 15px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.sticky-top {
    background-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background-color: var(--primary-blue);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .nav-link {
        margin: 10px 0;
    }

    .timeline::after {
        left: 12px !important;
    }

    .timeline-item {
        width: 100% !important;
    }

    .timeline-item::after {
        left: -1px !important;
        right: auto !important;
    }

    .left {
        left: 0;
    }

    .right {
        left: 0 !important;
    }

    .right::after {
        left: -1px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}