* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #000000;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 1rem;
}

.website-name {
    font-size: 1.5rem;
    color: #fff;
}

.nav-right {
    display: flex;
    gap: 1rem;
}

.nav-button {
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #000000;
}

.hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.8rem;
    margin: 0 auto;
    max-width: 600px;
}

.hero strong {
    color: #ffffff;
    font-weight: 600;
}

.nav-button.active {
    border: 2px solid #ffffff;
    background-color: #1a1a1a;
}

.nav-button.active:hover {
    background-color: #222;
}

.nav-button.active {
    border: 2px solid #ffffff;
    background-color: #1a1a1a;
    position: relative;
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
}

.nav-button.active:hover {
    background-color: #1a1a1a;
    transform: translateY(-1px);
}

.split-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-left h1 {
    margin-bottom: 2rem;
    font-size: 3rem;
}

.hero-left p {
    margin-bottom: 3rem;
    text-align: left;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button:hover::before {
    border-color: #ffffff;
    transform: scale(1.1);
}

.nav-button.active {
    border: 2px solid #ffffff;
    background-color: #1a1a1a;
    position: relative;
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.nav-button.active:hover {
    background-color: #1a1a1a;
    transform: translateY(-1px);
}

.split-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-left h1 {
    margin-bottom: 2rem;
    font-size: 3rem;
}

.hero-left p {
    margin-bottom: 3rem;
    text-align: left;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    border: 2px solid #ffffff;
}

.cta-button:hover {
    background-color: #000000;
}

/* Remove these unused styles */
.cta-button::before,
.cta-button:hover::before {
    display: none;
}
