@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff, #ff0073);
    color: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(215, 53, 39, 0.2);
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

header p {
    font-size: 1.2em;
    opacity: 0.95;
}

.section {
    background: white;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

h2 {
    color: #7c7c7c;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

h3 {
    color: #333;
    font-size: 1.3em;
    margin: 25px 0 15px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05em;
}

ul {
    margin: 15px 0;
    padding-left: 25px;
}

li {
    margin: 10px 0;
    color: #555;
    font-size: 1.05em;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-card {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #939393;
}

.feature-card h4 {
    color: #15150a;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.steps li {
    counter-increment: step-counter;
    margin: 20px 0;
    padding-left: 50px;
    position: relative;
}

.steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #9e9e9d;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.contact-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #d73527;
    margin-top: 30px;
}

.contact-box h3 {
    color: #757373;
    margin-bottom: 15px;
}

.email-link {
    display: inline-block;
    padding: 15px 35px;
    background: #d73527;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.email-link:hover {
    background: #c02d20;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 53, 39, 0.3);
}

.faq-item {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-question {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
}

.highlight {
    background: #fff3cd;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

code {
    background: #f1f3f4;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #d73527;
}

.icon {
    font-size: 1.3em;
}

footer {
    text-align: center;
    padding: 30px 20px;
    color: #666;
    margin-top: 40px;
}