/* General Layout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px;
}

.text-center {
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

a:hover {
    color: #0073e6;
}

/* Header */
.wave-header {
    background-color: #004d99;
    padding: 20px 0;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wave-header .logo {
    height: 50px;
}

.wave-nav .nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.wave-nav .nav-list li {
    margin-left: 20px;
}

.wave-nav .nav-list li a {
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.wave-nav .nav-list li a:hover {
    color: #ffcc00;
}

/* Hero Section */
.wave-hero {
    background: url('/public/images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.wave-hero .btn-primary {
    font-size: 1.2rem;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
}

/* How It Works Section */
.wave-how-it-works {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.wave-how-it-works .icon {
    height: 80px;
    margin-bottom: 20px;
}

.wave-how-it-works h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Features Section */
.wave-features {
    padding: 50px 0;
}

.wave-features h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Footer */
.wave-footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.wave-footer a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 10px;
}

.wave-footer a:hover {
    text-decoration: underline;
}

/* Forms */
form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

form input, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form input:focus, form select:focus {
    border-color: #0073e6;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.5);
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #0073e6;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #005bb5;
}
