/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #121212;
    background-color: #fefefe;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.main-header {
    background: white;
    padding: 3rem 0;
    text-align: center;
}

.main-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.main-header p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #dcdcdc;
    color: #333;
}

/* How it works */
.how-it-works {
    background-color: #f9f9f9;
    padding: 3rem 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px, 1fr));
    gap: 2rem;
}

.steps article {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    text-align: left;
}

.steps article h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #007bff;
}

.steps article p {
    font-size: 1rem;
    color: #444;
}

/* Expert guidance */
.expert-guidance {
    padding: 3rem 0;
}

.expert-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.expert-image img {
    max-width: 100%;
    border-radius: 12px;
}

.expert-info {
    flex: 1;
}

.expert-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.expert-info ul {
    list-style-type: disc;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.expert-info ul li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .expert-content {
        flex-direction: column;
        text-align: center;
    }
    .expert-info ul {
        padding-left: 0;
        list-style: none;
    }
}

