body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f9fa;
}

/*
header {
    background: #222;
    color: white;
    padding: 20px;
}

header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

header i {
    color: #ff9800;
    font-size: 36px;
    margin-right: 10px;
}
*/

/* Header (updated) */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    margin: 0;
}

/* Planning Section */
#planning {
    padding: 35px 20px;
    background: white;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

#planning h2 {
    font-size: 24px;
    color: #1e88e5;
}

#planning p {
    font-size: 16px;
    max-width: 700px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
}

#planning p + p {
    margin-top: 20px;
}

#planning button {
    margin-top: 20px;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Hero Content */
.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    top: -12px;
}

.hero-content h2 {
    font-size: 24px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px auto 0;
    max-width: 700px;
    text-align: center;
}

/* Security Section */
#security {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}

#security h2 {
    font-size: 24px;
    color: #1e88e5;
}

#security p {
    font-size: 16px;
    max-width: 700px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
}

#security p + p {
    margin-top: 20px;
}

/* Default Orange Button (also applies to <a class="button">) */
button,
a.button {
    background-color: #ff9800;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

button:hover,
a.button:hover {
    background-color: #e68900;
}

/* Green variation for Launch button */
a.button.green {
    background-color: #4CAF50;
}

a.button.green:hover {
    background-color: #388e3c;
}

/* Red variation for Subscribe/Decline buttons */
a.button.red {
    background-color: #e53935;
}

a.button.red:hover {
    background-color: #c62828;
}

/* Launch Button Section */
.launch-btn {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
footer {
    background: #222;
    color: #888;
    padding: 20px;
}

/* Legal Links */
.legal-links {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 40px;
    padding-bottom: 20px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
}

.legal-links a:hover {
    color: #bbb;
}

/* Alternating Background Colors */
.light-bg {
    background-color: #f4f4f4;
    padding-left: 10px;
    padding-right: 10px;
}

.white-bg {
    background-color: white;
    padding-left: 10px;
    padding-right: 10px;
}

/* Limit content width for better readability */
.content-box {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px auto 0;
    max-width: 700px;
    text-align: center;
}

/* FontAwesome icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Proof Section Icon Styling */
ul li i {
    color: #4caf50;
    margin-right: 8px;
}

ul {
    list-style: none;
    padding-left: 0;
    margin: 20px auto;
    max-width: 700px;
    text-align: left;
    line-height: 1.8;
}

/* Backtest Proof Section */
#proof {
    background: #fff;
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#proof h2 {
    font-size: 24px;
    color: #1e88e5;
    margin-bottom: 20px;
}

#proof p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 25px;
}

/* Better spacing for <section> layout on mobile */
section {
    margin-bottom: 35px;
}
