/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.header {
    text-align: center;
    padding: 10px;
    background-color: #222;
    color: gold;
    animation: fadeIn 2s ease;
}

.nav-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 20px;
}

.nav-buttons a {
    margin: 8px;
    padding: 10px 20px;
    background-color: gold;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-buttons a:hover {
    background-color: #e6c200;
}

.content-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px 120px;
    background-color: #fff;
}

.problem-text {
    flex: 1 1 500px;
    max-width: 600px;
    text-align: center;
}

.problem-text p {
    text-align: left;
}

.guardian-image {
    flex: 0 1 300px;
    text-align: center;
}

.guardian-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.guardian-image img:hover {
    transform: scale(1.05);
}

.section {
    padding: 40px 20px 80px;
    background-color: #fff;
    text-align: center;
}

.section img {
    max-width: 400px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: gold;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #e6c200;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 20px 20px 30px;
    background-color: #222;
    color: #bbb;
    font-size: 14px;
    animation: fadeIn 2s ease;
    box-sizing: border-box;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
