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

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

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

header {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 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, #d1fae5 0%, #a7f3d0 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid #10b981;
}

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

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

.hero p {
    font-size: 20px;
    color: #047857;
    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: #0f172a;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle, .form-subtitle {
    text-align: center;
    font-size: 18px;
    color: #475569;
    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: #0f766e;
    margin-bottom: 10px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 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(14, 165, 233, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 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 #14b8a6;
}

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

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

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

.contact-card p.highlight {
    color: #0d9488;
    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 #0ea5e9;
}

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

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

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

.page-title {
    font-size: 40px;
    color: #0f172a;
    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: #475569;
    margin-bottom: 40px;
}

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

.content-section h2 {
    font-size: 26px;
    color: #0f172a;
    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: #fef3c7;
    border-left: 5px solid #f59e0b;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

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

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

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

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

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

.info-box {
    border-left: 5px solid #06b6d4;
    background: #cffafe;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.info-box p, .info-box li {
    color: #164e63;
}

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

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

.success-box p {
    color: #065f46;
}

.contact-info-box {
    background: #f8fafc;
    border-left: 5px solid #64748b;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

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

footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    padding: 60px 0 20px;
}

.footer-warning {
    background: #fbbf24;
    color: #0f172a;
    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: #22d3ee;
    font-weight: 700;
}

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

.footer-section a:hover {
    color: #22d3ee;
}

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

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

.emoji {
    display: inline-block;
}
