/* Common Banner Styles */
.banner {
    display: flex;
    align-items: center;
    text-align: left;
    background-color: #f8f9fa; /* Light background for the banner */
    padding: 50px 0;
    transition: background-color 0.3s ease;
}

.text-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222; /* Light mode text color */
    transition: color 0.3s ease;
}

.text-content p {
    font-size: 1.2rem;
    color: #555; /* Light mode text color */
    margin: 10px 0;
    transition: color 0.3s ease;
}

.text-content .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #d9534f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.text-content .recommended {
    font-size: 1rem;
    color: #777;
    transition: color 0.3s ease;
}

.image-content {
    position: relative;
    z-index: 1;
}

.dotted-circle {
    position: absolute;
    border-radius: 50%;
    /* border: 1.4px dashed transparent; */
}

.dotted-circle:nth-child(1) {
    width: 450px;
    height: 450px;
    top: 90px;
    left: 90px;
}

.dotted-circle:nth-child(2) {
    width: 550px;
    height: 550px;
    top: 50px;
    left: 40px;
}

.dotted-circle:nth-child(3) {
    width: 650px;
    height: 650px;
    top: 10px;
    left: -10px;
}

/* Light Mode Overrides */
body:not(.dark-mode) .banner {
    background-color: #f8f9fa; /* Light background */
}

body:not(.dark-mode) .text-content h1 {
    color: #222; /* Light mode title color */
}

body:not(.dark-mode) .text-content p {
    color: #555; /* Light mode text color */
}

body:not(.dark-mode) .text-content .button {
    background-color: #d9534f; /* Red button color */
}

body:not(.dark-mode) .text-content .recommended {
    color: #777; /* Light mode recommendation text color */
}

/* Dark Mode Overrides */
body.dark-mode .banner {
    background-color: #1a1a1a; /* Dark background for banner */
}

body.dark-mode .text-content h1 {
    color: #fff; /* Light text color for dark mode */
}

body.dark-mode .text-content p {
    color: #ddd; /* Light grey text for dark mode */
}

body.dark-mode .text-content .button {
    background-color: #9b006f; /* Button color for dark mode */
}

body.dark-mode .text-content .recommended {
    color: #bbb; /* Light grey for recommendations in dark mode */
}

body.dark-mode .dotted-circle:nth-child(1) {
    border-color: rgba(255, 255, 255, 0.3); /* Lighter border for circles in dark mode */
}

body.dark-mode .dotted-circle:nth-child(2) {
    border-color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .dotted-circle:nth-child(3) {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .text-content h1 {
        font-size: 2rem;
    }

    .banner {
        flex-direction: column;
        text-align: center;
    }

    .image-content {
        margin-top: 20px;
    }
}
