.ragunda-info-simple {
    background: #fffbe6;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ragunda-info-simple--no-margin {
    padding-bottom: 0;
}

.ragunda-info-simple__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: ragundaInfoSimpleFadeIn 0.8s ease-out forwards;
}

@keyframes ragundaInfoSimpleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-info-simple__content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.ragunda-info-simple__text {
    flex: 1;
    max-width: 600px;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: ragundaInfoSimpleTextFadeIn 0.6s ease-out 0.2s forwards;
}

@keyframes ragundaInfoSimpleTextFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.ragunda-info-simple__title {
    font-family: 'Gotkin', var(--ragunda-font, Arial, sans-serif);
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    line-height: 1.6;
    color: #1d1d1d;
}

.ragunda-info-simple__text-content {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.ragunda-info-simple__text-content p {
    margin: 0 0 1rem 0;
}

.ragunda-info-simple__text-content p:last-child {
    margin-bottom: 0;
}

.ragunda-info-simple__button {
    display: inline-block;
    border: 2px solid #1d1d1d;
    border-radius: 10px;
    padding: 0.6em 1.4em;
    background: none;
    color: #1d1d1d;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    width: auto;
    box-shadow: none;
    text-align: left;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(10px);
    animation: ragundaInfoSimpleButtonFadeIn 0.5s ease-out 0.4s forwards;
}

@keyframes ragundaInfoSimpleButtonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-info-simple__button:hover,
.ragunda-info-simple__button:focus {
    background: #1d1d1d;
    color: #fffbe6;
    border-color: #1d1d1d;
    text-decoration: none !important;
    box-shadow: none;
}

.ragunda-info-simple__button:after {
    display: none !important;
}

.ragunda-info-simple__right-image {
    position: absolute;
    right: 0;
    bottom: -120px;
    width: 400px;
    height: 400px;
    z-index: 1;
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    animation: ragundaInfoSimpleImageFadeIn 0.7s ease-out 0.3s forwards;
}

@keyframes ragundaInfoSimpleImageFadeIn {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.ragunda-info-simple__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

@media (max-width: 1200px) {
    .ragunda-info-simple__right-image {
        width: 300px;
        height: 300px;
        bottom: -90px;
    }
}

@media (max-width: 768px) {
    .ragunda-info-simple {
        padding: 60px 0;
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ragunda-info-simple__content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .ragunda-info-simple__text {
        max-width: 100%;
    }

    .ragunda-info-simple__title {
        font-size: 2rem;
    }

    .ragunda-info-simple__right-image {
        position: relative;
        width: 100%;
        height: 250px;
        bottom: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .ragunda-info-simple {
        padding: 40px 0;
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ragunda-info-simple__container {
        padding: 0 1.5rem;
    }

    .ragunda-info-simple__content {
        gap: 1.5rem;
    }

    .ragunda-info-simple__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .ragunda-info-simple__text {
        font-size: 14px;
        line-height: 1.5;
    }

    .ragunda-info-simple__right-image {
        height: 200px;
        margin-top: 1.5rem;
    }
} 