.green-dot-container {
    width: 100%;
    margin: 0 auto;
    font-family: 'Lato', sans-serif;
}

/* Hide/Show logic based on screen size */
.green-dot__mobile-image-wrapper { display: block; margin-bottom: 30px; }
.green-dot__mobile-main-image { width: 100%; height: auto; display: block; }
.green-dot__desktop-layout { display: none; }
.green-dot__accordion { display: block; }

@media (min-width: 768px) {
    .green-dot__mobile-image-wrapper { display: none; }
    .green-dot__desktop-layout { display: flex; gap: 40px; align-items: flex-start; }
    .green-dot__accordion { display: none; }
    .green-dot__static-header { margin-bottom: 40px; }
}

/* Desktop Styles */
.content-area {
    flex: 1;
    width: 50%;
    padding-right: 40px;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
}

.content-image-wrapper {
    position: relative;
    width: 100%;
    margin-top: 24px;
    min-height: 200px;
    overflow: hidden;
}

.content-image {
    max-width: 100%;
    border-radius: 4px;
    transition: opacity 0.3s ease-in-out;
}

.content-image.fading {
    opacity: 0;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.content-number {
    width: 24px;
    height: 24px;
    background-color: #8dc63f;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.content-area h3 {
    margin: 0;
    font-size: 24px;
    color: #555;
    font-weight: 700;
}

.content-description {
    margin-left: 40px;
    color: #555;
    font-size: 18px;
    line-height: 1.5;
}

.content-image {
    max-width: 100%;
    margin-top: 24px;
    border-radius: 4px;
}

.main-image-area {
    position: relative;
    flex: 1;
    width: 50%;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #8dc63f !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0;
    color: #000 !important;
    font-weight: 700;
    font-size: 12px;
    opacity: 1 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
}

.dot--static {
    cursor: default;
    pointer-events: none;
}

.dot--static::after {
    display: none;
}

.dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #8dc63f;
    opacity: 0.3;
    z-index: -1;
    animation: dotPulse 2.5s infinite;
}

.dot:hover, .dot--active {
    transform: translate(-50%, -50%) scale(1.2) !important;
    background-color: #7ab33a !important;
    border: none !important;
    color: #000 !important;
    opacity: 1 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0.3; }
}

/* Accordion Styles (Mobile) */
.green-dot__accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.green-dot__accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: transparent !important;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none !important;
    box-shadow: none !important;
}

.green-dot__accordion-trigger:hover,
.green-dot__accordion-trigger:active,
.green-dot__accordion-trigger:focus {
    background-color: transparent !important;
}

.green-dot__accordion-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.green-dot__accordion-number {
    width: 24px;
    height: 24px;
    background-color: #8dc63f;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.green-dot__accordion-title {
    font-size: 18px;
    font-weight: 700;
    color: #555;
    margin: 0;
}

.green-dot__accordion-icon {
    transition: transform 0.3s ease;
    color: #555;
}

.green-dot__accordion-item.is-active .green-dot__accordion-icon {
    transform: rotate(180deg);
}

.green-dot__accordion-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.green-dot__accordion-item.is-active .green-dot__accordion-content {
    height: auto;
    opacity: 1;
    padding-bottom: 20px;
}

.green-dot__accordion-description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
}

.green-dot__accordion-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.custom-green-dot-button:hover {
    color: #769B26 !important;
}
