* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #A2002B;
    --text-color: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--theme-color);
    color: var(--text-color);
    min-height: 100vh;
    line-height: 1.6;
}

/* Homepage Styles */
.homepage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.tagline {
    max-width: 140px;
    width: 100%;
    height: auto;
}

.navigation {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Page Styles */
.page-container {
    min-height: 100vh;
    background-color: #ffffff;
    color: #333333;
}

.page-header {
    background-color: var(--theme-color);
    padding: 10px 20px;
    text-align: center;
}

.page-header .logo {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content h1 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333333;
    font-weight: 600;
}

.page-content h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333333;
    font-weight: 600;
}

.page-content h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555555;
    line-height: 1.7;
}

.page-content ul, .page-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555555;
}

.page-content li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.page-content strong {
    font-weight: 600;
    color: #333333;
}

.page-content a {
    color: var(--theme-color);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 30px 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--theme-color);
    text-decoration: none;
    font-size: 16px;
}

.back-link:hover {
    text-decoration: underline;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.delete-account-button {
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--text-color);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

.delete-account-button:hover {
    opacity: 0.9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333333;
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--theme-color);
}

.submit-button {
    background-color: var(--theme-color);
    color: var(--text-color);
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }
    
    .tagline {
        max-width: 120px;
    }
    
    .navigation {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .page-content {
        padding: 30px 15px;
    }
    
    .page-content h1 {
        font-size: 24px;
    }
    
    .page-content h2 {
        font-size: 20px;
    }
}

