.hero-section {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 20px;
}

h1 {
    text-decoration: underline;
    font-weight: bolder;
    font-size: 25px;
}

.hero-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

}

.hero-image .be-img {
    height: 35vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: white;

    margin-top: 10px;
}

.hero-section-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.first {
    margin-top: 50px;
}

.last {
    margin-top: 60px;
}

.hero-section-reverse .hero-content,
.hero-section-reverse .hero-image {
    direction: ltr;
}

.hero-section-reverse>* {
    direction: ltr;
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgb(0, 255, 191);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: none;
}

.info-card h2 {
    font-size: 1rem;
    margin: 0 0 15px 0;
    color: #00ffcc;
    line-height: 1.3;
    display: flex;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cta-button {
    align-self: flex-start;
    background: linear-gradient(135deg, #00ffcc, #00ffb7);
    color: black;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
}

.round-thing {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.round-thing li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgb(0, 255, 187);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 160px;
}

.round-thing i svg {
    width: 20px !important;
    height: 20px !important;
    color: transparent !important;
}

.round-thing svg *,
.round-thing svg path,
.round-thing svg circle,
.round-thing svg polygon,
.round-thing svg line,
.round-thing svg g path {
    fill: none !important;
    stroke: #00ff9d !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.round-thing svg path[d*="635 560"] {
    fill: #00ff9d !important;
}

.round-thing span {
    font-family: inherit;
}

@media (max-width: 768px) {
    .round-thing li {
        flex: 1 1 45%;
        min-width: auto;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .hero-image img,
    .hero-image .be-img {
        height: 40vh;
        width: 45vh;
    }
    .info-card {
        width: 40vh;
    }
    h1 {
    font-size: 18px;
}
}