.captcha {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}
#captcha-question {
    font-weight: bold;
    font-size: 1.1em;
}
#captcha-msg.success { color: green; }
#captcha-msg.error { color: red; }
#continue-btn:disabled { background: #ccc; cursor: not-allowed; }
.contact-form {
    max-width: 400px;
    margin: 24px auto;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.contact-form .form-actions {
    display: flex;
    gap: 12px;
}
.contact-form .error {
    color: #d32f2f;
    font-size: 0.95em;
    margin-bottom: 8px;
}
.contact-form .success {
    color: #388e3c;
    font-size: 1em;
    margin-bottom: 8px;
}

.centered-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.gallery-bg {
    background: #f8f8f8;
}

.gallery-container {
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 700px;
}

.gallery-title {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.lightbox-img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.gallery-table {
    border-collapse: collapse;
    margin: 0 auto;
}

.gallery-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: transform 0.2s;
}
.gallery-img:hover {
    transform: scale(1.05);
}
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8fafc;
    color: #222;
    min-height: 100vh;
}
h1 {
    font-size: 2.5rem;
    color: #3730a3;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
}
h2 {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 14px;
    text-align: center;
    font-weight: 600;
}
h3 {
    font-size: 1.4rem;
    color: #6366f1;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}
button {
    font-family: inherit;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    background: #6366f1;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
    transition: background 0.2s;
}
button:hover {
    background: #4f46e5;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(55,48,163,0.08);
    padding: 32px 24px;
}
.title {
    font-size: 2rem;
    color: #3730a3;
    margin-bottom: 16px;
    text-align: center;
}
.subtitle {
    font-size: 1.2rem;
    color: #6366f1;
    margin-bottom: 12px;
    text-align: center;
}
.text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(55,48,163,0.07);
}
th, td {
    border: 1px solid #e0e7ff;
    padding: 12px 18px;
    text-align: center;
}
th {
    background: #6366f1;
    color: #fff;
    font-weight: 600;
}
tr:nth-child(even) {
    background: #f3f4f6;
}
.intro-btn {
    padding: 12px 32px;
    font-size: 1.1rem;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
    transition: background 0.2s;
    margin-bottom: 18px;
}
.intro-btn:hover {
    background: #4f46e5;
}
.intro-container {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(55,48,163,0.10);
    padding: 40px 30px;
    text-align: center;
}
.intro-title {
    font-size: 2.2rem;
    color: #3730a3;
    margin-bottom: 18px;
}
.intro-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
}
.info-box {
    width: 400px; 
    padding: 24px; 
    border-radius: 8px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
    background: #fff;
}