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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
}

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

.header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #34c759, #30d158);
    color: white;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(52, 199, 89, 0.3);
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header p {
    font-size: 1.2em;
    opacity: 0.95;
    font-weight: 500;
}

.section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.2);
}

.section h2 {
    color: #34c759;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34c759;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #34c759, #30d158);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.app-info {
    display: grid;
    gap: 10px;
}

.app-info p {
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #34c759;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #34c759;
}

.faq-item h3 {
    color: #34c759;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    text-align: center;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #34c759;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.1);
}

.contact-item h3 {
    color: #34c759;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-weight: 500;
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .section {
        padding: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}
