body, html, textarea {
cursor: url("../images/ic8HaC9iwA3l.png"), crosshair;
}
a {
cursor: url("../images/J9OxLHIYV8Z2.png"), pointer;
}
a:hover {
cursor: url("../images/J9OxLHIYV8Z2.png"), pointer;
}
.help-cursor {
cursor: url("../images/DSoSONeoCJOw.png"), help;
}
.interactive {
cursor: url("../images/J9OxLHIYV8Z2.png"), pointer;
}

        body {
            background-image: url('../images/BYoxRtIjDn8J.png');
            background-size: cover;
            background-attachment: fixed;
            padding: 20px;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 40px; 
        }
        
        .content-box {
            background-color: #e7f1ff;
            border-radius: 5px;
            padding: 0;
            margin-top: 20px;
            padding-bottom: 40px;
            position: relative;
        }
        
        .top-header {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 5px 5px 0 0;
        }
        
        .banner {
            width: 100%;
            height: 150px;
            background-color: #e7f1ff;
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .nav-bar {
            position: absolute;
            background-color: #add8e6;
            padding: 8px;
            z-index: 10;
        }
        
        .nav-bar ul {
            display: flex;
            list-style: none;
        }
        
        .nav-bar li {
            padding: 0 10px;
        }
        
        .nav-bar li:not(:last-child) {
            border-right: 1px solid white;
        }
        
        .nav-bar a {
            color: white;
            text-decoration: none;
            font-size: 12px;
        }
        
        .nav-bar a:hover {
            text-decoration: underline;
        }
        
        .top-box-content {
            display: flex;
            gap: 20px;
            padding: 0 20px;
        }
        
        .image-container {
            width: 40%;
            position: relative;
        }
        
        .profile-image {
            outline: 10px outset #dde2f0;
            width: 100%;
            height: auto;
            aspect-ratio: 1/1;
            background-color: white;
            object-fit: cover;
        }
        
        .text-content {
            width: 60%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-bottom: 20px;
        }
        
        .welcome-text {
            font-size: 24px;
            font-weight: bold;
            margin-left: 20px;
            margin-bottom: 20px;
            color: black;
        }
        
        .button-container {
            display: flex;
            flex-direction: column;
            gap: 67px;
            width: 90%;
            margin: auto;
        }
        
        .content-button {
            padding: 15px;
            background-color: white;
            outline: 10px outset #dde2f0;
            font-size: 30px;
            font-weight: bold;
            cursor: url("../images/DSoSONeoCJOw.png"), help;
            transition: background-color 0.3s;
            border: none;
            width: 100%;
            text-align: center;
            color: black;
        }
        
        .content-button:hover {
            background-color: #add8e6;
        }
        
        .content-button.active {
            background-color: #87ceeb;
        }
        
        .bottom-box-content {
            display: flex;
            gap: 40px;
            padding: 0 20px;
            position: relative;
        }
        
        .left-image {
            width: 30%;
            position: relative;
            margin-left: -40px;
        }
        
        .tall-image {
            width: 125%;
            height: auto;
            background-color: white;
            margin-left: 50px;
        }
        
        .image-button {
            width: 60px;
            height: 60px;
            padding: 0;
            background-color: white;
            outline: 10px outset #dde2f0;
            cursor: pointer;
            position: absolute;
            right: -110px;
            top: 393px; 
            border: none;
            overflow: hidden;
            z-index: 10; 
        }
        
        .image-button img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-button:hover {
            background-color: #add8e6;
            cursor: url("../images/DSoSONeoCJOw.png"), help;
        }
        
        .dynamic-content {
            width: 70%;
            min-height: 200px;
            margin-left: 20px;
        }
        
        .content-title {
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            margin-left: 100px;
        }
        
        .content-description {
            margin-bottom: 10px;
            margin-left: 100px;
        }
        
        .content-image {
            height: 225px;
            width: 400px;
            height: auto;
            outline: 10px outset #dde2f0;
            margin: 20px auto; 
            margin-left: 180px;
            display: block;
            background-color: white;
        }
        
        .status {
            color: #4169e1;
            cursor: help;
            position: relative;
        }
        
        .status.active::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: white;
            padding: 5px;
            border-radius: 3px;
            font-size: 12px;
            white-space: nowrap;
            z-index: 100;
        }
        
        @media (max-width: 768px) {
            .container {
                gap: 30px;
            }
            
            .top-box-content, .bottom-box-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .image-container, .text-content, .left-image, .dynamic-content {
                width: 100%;
            }
            
            .profile-image {
                width: 80%;
                margin: 0 auto;
                display: block; 
            }
            
            .tall-image {
                width: 50%; 
                margin: 0 auto;
            }
            
            .left-image {
                margin-left: 0;
                text-align: center; 
            }
            
            .button-container {
                width: 100%;
                gap: 10px; 
            }
            
            .content-button {
                font-size: 24px; 
                color: black; 
            }
            
            .image-button {
                position: absolute;
                right: 10px;
                top: -50px; 
                margin: 0;
            }
            
            .dynamic-content {
                margin-left: 0; 
                padding: 0 10px; 
            }
            
            .content-title, .content-description {
                margin-left: 0; 
                text-align: center; 
            }
            
            .content-image {
                max-width: 90%; 
                margin-left: auto; 
                margin-right: auto;
                height: auto; 
            }
        }