/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #333;
    padding: 20px 0;
}

nav ul {
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.get-started {
    padding: 50px 20px;
    text-align: center;
}

.get-started h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.get-started p {
    font-size: 18px;
    margin-bottom: 20px;
}

.get-started ol {
    text-align: left;
    margin-bottom: 20px;
}

.get-started ol li {
    font-size: 18px;
    margin-bottom: 10px;
}

.cta-btn {
    display: inline-block;
    background-color: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}
