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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

nav h1 {
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

nav a:hover, nav a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid #ff6b6b;
}

.hero h2 {
    font-size: 22px;
    color: #d63031;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero h1 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.3;
}

.hero p {
    font-size: 20px;
    color: #636e72;
    max-width: 900px;
    margin: 0 auto;
}

.section {
    padding: 70px 0;
    background: #ffffff;
}

.section:nth-child(even) {
    background: #ecf0f1;
}

.section h2 {
    font-size: 36px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle, .form-subtitle {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

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

.contact-form {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #bdc3c7;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.contact-methods {
    background: #ecf0f1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid #e74c3c;
}

.contact-card .emoji {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: #7f8c8d;
    font-size: 15px;
    margin: 8px 0;
}

.contact-card p.highlight {
    color: #e74c3c;
    font-weight: 700;
    font-size: 18px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 25px;
    border-left: 5px solid #9b59b6;
}

.faq-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    color: #636e72;
    font-size: 16px;
    line-height: 1.8;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
}

.page-title {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 800;
}

.page-title .emoji {
    font-size: 50px;
    margin-right: 15px;
}

.content-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

.content-box > p:first-child {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.content-section {
    margin-bottom: 45px;
}

.content-section h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section p, .content-section li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
}

.content-section li:last-child {
    border-bottom: none;
}

.warning-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.warning-box h2 {
    color: #856404;
    font-size: 22px;
    margin-bottom: 15px;
}

.warning-box p, .warning-box li {
    color: #856404;
}

.alert-box {
    border-left: 5px solid #dc3545;
    background: #f8d7da;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.alert-box h3 {
    color: #721c24;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.alert-box li {
    color: #721c24;
    padding: 6px 0;
    border-bottom: none;
}

.info-box {
    border-left: 5px solid #17a2b8;
    background: #d1ecf1;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.info-box p, .info-box li {
    color: #0c5460;
}

.success-box {
    border-left: 5px solid #28a745;
    background: #d4edda;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.success-box h3 {
    color: #155724;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.success-box p {
    color: #155724;
}

.contact-info-box {
    background: #f8f9fa;
    border-left: 5px solid #6c757d;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.contact-info-box p {
    color: #495057;
    line-height: 2;
}

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-warning {
    background: #f39c12;
    color: #2c3e50;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-warning .emoji {
    font-size: 28px;
}

.footer-warning p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3498db;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 2px solid #455a64;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.emoji {
    display: inline-block;
}
