/* =========================================
   Global & Typography
========================================= */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    margin-top: 0;
}

/* Colors from screenshots */
:root {
    --brand-blue: #3a80a7;
    --brand-green: #50a045;
    --dark-bg: #1f2120;
    --light-grey: #f0f0f0;
}

/* =========================================
   Header
========================================= */
.top-bar {
    background-color: var(--brand-blue);
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 20px;
    text-align: center;
}

.top-column .small-caps {
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px dashed white;
    padding-bottom: 2px;
}

.top-column h2 {
    margin: 8px 0 0 0;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

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

.logo-text .cursive {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 24px;
}

.logo-text .bold-caps {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 54px;
    letter-spacing: 2px;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* =========================================
   Navigation
========================================= */
.main-nav {
    background-color: var(--brand-green);
    display: flex;
    justify-content: center;
    border-top: 2px solid #3c7d34;
    border-bottom: 2px solid #3c7d34;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 16px;
    text-transform: uppercase;
}

.main-nav a:hover {
    background-color: rgba(0,0,0,0.1);
}

.main-nav a.active {
    background-color: #3e3d3d;
}

/* =========================================
   Hero Section
========================================= */
.hero-section {
    background-image: url('images/banner-back.jpg'); 
    background-color: #cdd6cc;
    background-size: cover;
    background-position: center top;
    height: 450px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 12%;
    border-bottom: 5px solid #e0e0e0;
}

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

.hero-text h3 {
    font-family: 'Georgia', serif;
    font-size: 26px;
    font-weight: normal;
    color: #222;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px white;
}

.hero-text h1 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 85px;
    color: #222;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 2px white;
    letter-spacing: 2px;
}

.btn-learn {
    display: inline-block;
    padding: 12px 35px;
    border: 3px solid var(--brand-green);
    color: var(--brand-green);
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    font-family: 'Impact', sans-serif;
    background: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-learn:hover {
    background: var(--brand-green);
    color: white;
}

/* =========================================
   Two-Column Features (Grey BG)
========================================= */
.split-section {
    display: flex;
    padding: 50px 10%;
    background-color: var(--light-grey);
    gap: 40px;
}

.split-left {
    flex: 1.2;
}

.split-left h2 {
    color: var(--brand-blue);
    font-size: 32px;
    font-family: 'Impact', sans-serif;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.split-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.white-box {
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.white-box img {
    width: 50px;
    height: auto;
}

/* =========================================
   Pricing Table Section
========================================= */
.pricing-section {
    padding: 50px 10%;
    background-color: white;
    text-align: center;
}

.network-title {
    color: var(--brand-blue);
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.network-desc {
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    font-size: 15px;
}

.pricing-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
}

.pricing-table th {
    background-color: var(--brand-blue);
    color: white;
    padding: 12px;
    font-size: 18px;
    font-weight: normal;
}

.pricing-table td {
    background-color: var(--brand-green);
    color: white;
    padding: 15px;
    border-bottom: 2px solid white;
    font-size: 14px;
}

.btn-order {
    background: #dff0d8;
    color: var(--brand-green);
    padding: 8px 20px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid white;
    display: inline-block;
}

.btn-order:hover {
    background: white;
}

/* =========================================
   Image & Info Section
========================================= */
.info-section {
    display: flex;
    background-color: var(--light-grey);
    align-items: center; /* Vertically centers the text next to the image */
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    height: auto;
    display: block; /* Removes the tiny whitespace gap under images */
}

.info-text {
    flex: 1;
    padding: 50px 5%;
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--brand-green);
    padding-bottom: 5px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.icon-header:first-child {
    margin-top: 0;
}

.icon-header img {
    width: 35px;
}

.icon-header h2 {
    color: var(--brand-blue);
    font-family: 'Impact', sans-serif;
    font-size: 32px;
    margin: 0;
    letter-spacing: 1px;
}

.info-text p {
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   Dark Side Effects Section
========================================= */
.dark-section {
    background-color: var(--dark-bg);
    color: white;
    padding: 50px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dark-section h2 {
    color: var(--brand-green);
    font-family: 'Impact', sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--brand-green);
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.dark-columns {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    width: 100%;
}

.dark-col {
    flex: 1;
}

.dark-col p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.dark-col .green-text {
    color: var(--brand-green);
}

.dark-col ul {
    list-style: none;
    padding: 0;
}

.dark-col li {
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.dark-col li::before {
    content: "•";
    color: var(--brand-green);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

/* =========================================
   Footer Area
========================================= */
.footer-bottom {
    background-color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #333;
}

.footer-bottom a {
    color: var(--brand-blue);
    text-decoration: none;
    margin: 0 10px;
}

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