/* Global Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #181818;
    color: #e0e0e0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #0097a7;
}

.button {
    display: inline-block;
    background-color: #00bcd4;
    color: #181818;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    border: none;
}

.button:hover {
    background-color: #0097a7;
    transform: scale(1.05);
}

.section-intro {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Header */
header {
    background-color: #212121;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 2rem;
    margin: 0;
    color: #00bcd4;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: #f0f0f0;
    font-weight: 500;
    font-size: 1.1rem;
}

nav a:hover {
    color: #00e5ff;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-toggle:focus {
    outline: none;
}

/* Hero Section */
.hero {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem; /* Slightly reduced for better readability */
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero .tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-button {
    font-size: 1.1rem;
    padding: 14px 28px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #2a2a2a;
}

.how-it-works h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #00bcd4;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.step-card {
    background-color: #333;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.step-icon {
    color: #00bcd4;
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: #f0f0f0;
    font-size: 1.5rem;
}

.step-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.7;
}

.how-it-works .disclaimer {
    font-size: 0.9rem;
    color: #ff6b6b;
    margin-top: 40px;
    text-align: center;
    padding: 0 20px;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #212121;
}

.services h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #00bcd4;
    text-align: center;
}

.services-grid {
    display: grid;
}
