body, h1, h2, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
}

header {
    background-color: #1a1a1a;
    padding: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #00bcd4;
}

.hero {
    background-image: url('your-hero-image.jpg');
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #00bcd4;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px; /* Increased border-radius for a sleeker look */
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
    transform: skewX(-5deg); /* Skew the button slightly */
}

.cta-button:hover {
    background-color: #0097a7;
    transform: scale(1.1);
}

.feature {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature p {
    margin-top: 20px;
}

/* Add a slightly angled black line to divide the sections */
.divider {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: skewX(-5deg);
    top: 50%;
    z-index: -1;
}

footer {
    text-align: center;
    background-color: #1a1a1a;
    padding: 10px 0;
}

footer p {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }
}
