* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Google Sans', sans-serif;
}

.db {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23222"/></svg>');
    background-size: cover;
    color: white;
    position: relative;
}

.db::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: -1;
}

header 
{
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

header h1 
{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2196F3;
}

nav 
{
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-btn 
{
    background-color: #555;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-btn:hover 
{
    background-color: #777;
    transform: translateY(-2px);
}

.hm 
{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ic 
{
    margin-bottom: 2rem;
}

.mi 
{
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.mi:hover 
{
    transform: scale(1.05);
}

.hp 
{
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    max-width: 600px;
}

.bc 
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.ab 
{
    background-color: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.ab:hover 
{
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.pb 
{
    background-color: #2196F3;
}

.pb:hover 
{
    background-color: #1976D2;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.pm, .sm 
{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cc 
{
    text-align: center;
    max-width: 600px;
}

.pt, .st 
{
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2196F3;
}

.pp1 
{
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white;
    font-style: italic;
}

.pp2 
{
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    text-decoration: underline;
}

.il 
{
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: white;
}

.il li 
{
    margin-bottom: 0.5rem;
}

.eb 
{
    background-color: #FF4444;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.eb:hover 
{
    background-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.bp 
{
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    font-style: italic;
}

.ebd 
{
    background-color: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.ec 
{
    text-align: center;
}

.et 
{
    font-size: 8rem;
    color: #FF4444;
    margin-bottom: 1rem;
}

.em 
{
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #CCCCCC;
}

.bb 
{
    background-color: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.bb:hover 
{
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
footer 
{
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

footer p
{
    font-size: 0.9rem;
    color: #CCCCCC;
}
