/* Body styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-size: cover;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 30px 20px;
    color: #333;
}

.hero-section .logo {
    width: 70%;
    max-width: 600px;
}

.hero-section h2 {
    font-size: 1.5rem;
    color: #555;
    margin-top: 10px;
}

/* Content Section */
.content-section {
    background: white;
    padding-left: 5%;
    padding-right: 5%;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 1.8rem;
    color: #3fb8d0;
    margin-top: 30px;
}

.content-section p, .content-section ul {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-section ul {
    padding-left: 20px;
    list-style: disc;
}

/* Demo Section */
.demo-block {
    display: block;
    position: relative;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}

.demo-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-block:hover .demo-overlay {
    opacity: 1;
}

.demo-overlay p {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.btn-buy {
    display: inline-block;
    padding: 20px 40px;
    background-color: #43b9d1;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-buy:hover {
    background-color: #369ea7;
    transform: translateY(-8px);
}

/* License Agreement Styles */
.license-box {
    max-height: 300px;
    overflow-y: scroll;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.license-box p {
    margin-bottom: 1.5rem;
}

.license-box strong {
    font-weight: bold;
    color: #000;
}

footer {
    text-align: center;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
}

footer .copyright {
    margin: 0;
}

.custom-image {
    border: 1px solid #ccc;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Test Data Section Styles */
.test-data-section {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #17a2b8;
}

.test-data-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.test-data-section .alert {
    background-color: transparent;
    padding: 0;
    border: none;
    margin-bottom: 0;
}

.test-data-section ul {
    margin-bottom: 1rem;
}

.test-data-section code {
    background-color: #e9ecef;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: monospace;
}