/*
Theme Name: Astra Child Fixed
Template: astra
Description: Child theme for Astra with custom 70/30 layout and golden borders.
Version: 1.0
Author: Your Name
*/

body {
    background-color: white;
    margin: 0;
    font-family: Arial, sans-serif;
}

.header, .split-container {
    border: 2px solid #d4af37;
    border-radius: 12px;
    margin: 20px;
    overflow: hidden;
    background-color: #fffdf2;
}

.header {
    padding: 20px;
    text-align: center;
}

.split-container {
    display: flex;
    direction: rtl;
    background-color: #fffdf2;
}

.left-side, .right-side {
    padding: 20px;
    box-sizing: border-box;
}

.left-side {
    width: 30%;
}

.right-side {
    width: 70%;
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
    .left-side, .right-side {
        width: 100%;
    }
}
