/* General Styles */
body {
    font-family: 'Jost', sans-serif; /* Use Jost font */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
}

/* Global Heading Styles */
h1 {
    color: #ff6600; /* Orange color for h1 headings */
}

h1, h2, h3, h4, h5, h6 {
    color: #ff6600; /* Orange color for all headings */
}

/* Global Heading Styles (Force Orange Except Hero Section) */
h1:not(.hero h1) {
    color: #ff6600; /* Orange color for all headings except hero section */
}

/* Hero Section Heading Styles */
.hero h1, .hero h2 {
    color: #fff; /* Keep hero section headings white */
}

/* Header Styles */
header {
    background-color: #fff; /* White background */
    color: #333; /* Adjusted text color for contrast */
    padding: 5px 20px; /* Reduced padding */
    border-bottom: 1px solid #ddd; /* Optional: Add a subtle border */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* Fixed height for the header */
    overflow: hidden; /* Ensure content doesn't overflow */
}

/* Logo */
.logo img {
    height: 180px; /* Allow the logo to scale proportionally */
    max-height: 250%; /* Ensure the logo fits within the header height */
    width: auto; /* Maintain aspect ratio */
}

/* Menu */
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu ul li {
    display: inline;
}

.menu ul li a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.menu ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #007bff; /* Use the primary color from the logo */
    color: #fff; /* White text for contrast */
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem; /* Increased font size for the main heading */
    margin-bottom: 10px;
    color: #fff; /* Keep hero section headings white */
}

.hero h2 {
    font-size: 2.2rem; /* Slightly larger font size for the left block heading */
    margin-bottom: 10px;
    color: #fff; /* Keep hero section headings white */
}

.hero p {
    font-size: 1.5rem; /* Increased font size for the subheading */
    margin-bottom: 20px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure responsiveness */
    margin-top: 20px;
}

/* Left Block (Text) */
.hero-text {
    flex: 1;
    text-align: left;
    padding: 10px;
}

.hero-text h2 {
    font-size: 2.2rem; /* Slightly larger font size for the left block heading */
    margin-bottom: 10px;
    color: #fff; /* Ensure text contrasts with the background */
}

.hero-text p {
    font-size: 1.2rem; /* Slightly larger font for description */
}

/* Right Block (Video) */
.hero-video {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.hero-video video {
    max-width: 100%;
    height: 300px; /* Increased video height */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

/* Hero Section Button */
.hero .cta-button {
    display: inline-block;
    background-color: #ff6600; /* Orange background (logo color combination) */
    color: #fff; /* White text */
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px; /* Add spacing above the button */
    transition: background-color 0.3s, color 0.3s;
}

.hero .cta-button:hover {
    background-color: #cc5200; /* Darker orange for hover effect */
    color: #fff;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Sections */
section {
    margin-bottom: 20px;
}

section h2 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

section p, section ul, section ol {
    font-size: 1rem;
    margin: 10px 0;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ol {
    list-style-type: decimal;
    padding-left: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Affiliate Steps Section */
.affiliate-steps {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    text-align: center;
    border: 3px solid #ff6600; /* Orange border */
    border-radius: 8px; /* Optional: Rounded corners */
}

.affiliate-steps h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Primary color for the heading */
    margin-bottom: 30px;
}

.steps-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; /* Ensure responsiveness */
}

/* Left Block (Form) */
.step-left {
    flex: 1; /* Ensure equal width */
    text-align: left;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-left h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.affiliate-form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #333;
}

.affiliate-form input, .affiliate-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 30%;
}

.phone-input input {
    width: 70%;
}

.affiliate-form .cta-button {
    background-color: #ff6600; /* Orange background */
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.affiliate-form .cta-button:hover {
    background-color: #cc5200; /* Darker orange for hover */
}

/* Right Block (Buttons) */
.step-right {
    flex: 1; /* Ensure equal width */
    text-align: left;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-right h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.step-right .cta-button {
    display: block;
    width: 100%;
    background-color: #007bff; /* Blue background */
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.step-right .cta-button:hover {
    background-color: #0056b3; /* Darker blue for hover */
}

/* Why Join Section */
.why-join {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    border: 3px solid #ff6600; /* Orange border to match the design */
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 40px;
}

.why-join h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Primary color for the heading */
    text-align: center;
    margin-bottom: 30px;
}

.why-join-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.why-join-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
}

.why-join-item h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.why-join-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Get Started Today Section */
.get-started {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    text-align: center;
    border: 3px solid #ff6600; /* Orange border */
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 40px;
}

.get-started h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Primary color for the heading */
    margin-bottom: 30px;
}

.get-started-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.get-started-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
    text-align: center;
}

/* Get Started Today Section Images */
.get-started-item img {
    max-width: 250px; /* Increase the maximum width */
    margin-bottom: 25px;
}

.get-started-item h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.get-started-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Create Account Section */
.create-account {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    text-align: center;
    border: 3px solid #ff6600; /* Orange border */
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 40px;
}

.create-account h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Orange color for the heading */
    margin-bottom: 20px;
}

.create-account-content .cta-button {
    display: inline-block;
    background-color: #ff6600; /* Orange background */
    color: #fff; /* White text */
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.create-account-content .cta-button:hover {
    background-color: #cc5200; /* Darker orange for hover effect */
    color: #fff;
}

.create-account-content .contact-info {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

.create-account-content .contact-info a {
    color: #007bff; /* Blue color for the email link */
    text-decoration: none;
}

.create-account-content .contact-info a:hover {
    text-decoration: underline;
}

/* Audience Connected Section */
.audience-connected {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    text-align: center;
    border: 3px solid #ff6600; /* Orange border */
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 40px;
}

.audience-connected h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Orange color for the heading */
    margin-bottom: 30px;
}

.audience-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    gap: 20px;
    justify-items: center;
}

.audience-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
    text-align: center;
    width: 150px;
}

.audience-box i {
    font-size: 50px; /* Icon size */
    color: #007bff; /* Default blue color for icons */
    margin-bottom: 10px;
}

/* YouTube Icon - Red */
.audience-box .fa-youtube {
    color: #FF0000; /* Red color for YouTube */
}

/* Instagram Icon - Pink */
.audience-box .fa-instagram {
    color: #E1306C; /* Pink color for Instagram */
}

/* Start Earning Section */
.start-earning {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    text-align: center;
    border: 3px solid #ff6600; /* Orange border */
    border-radius: 8px; /* Rounded corners */
    margin: 40px auto; /* Center the box horizontally */
    max-width: 600px; /* Limit the width of the box */
}

.start-earning h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Orange color for the heading */
    margin-bottom: 10px;
}

.start-earning .subheading {
    font-size: 1.2rem;
    color: #555; /* Subheading color */
    margin-bottom: 20px;
}

.start-earning .button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    flex-wrap: wrap; /* Ensure responsiveness */
}

.start-earning .cta-button {
    display: inline-block;
    background-color: #ff6600; /* Orange background */
    color: #fff; /* White text */
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}

.start-earning .cta-button:hover {
    background-color: #cc5200; /* Darker orange for hover effect */
    color: #fff;
}

/* Promotion Tools Section */
.promotion-tools {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    text-align: center;
    border: 3px solid #ff6600; /* Orange border */
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 40px;
}

.promotion-tools h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Orange color for the heading */
    margin-bottom: 10px;
}

.promotion-tools .subheading {
    font-size: 1.2rem;
    color: #555; /* Subheading color */
    margin-bottom: 20px;
}

.tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    justify-items: center;
}

.tool-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
    text-align: center;
    width: 100%;
}

.tool-item i {
    font-size: 40px; /* Icon size */
    color: #007bff; /* Default blue color for icons */
    margin-bottom: 10px;
}

.tool-item p {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

/* Promotion Tools Section - Resources Link */
.promotion-tools .resources-link {
    font-size: 1rem;
    color: #555;
    margin-top: 20px;
    text-align: center;
}

.promotion-tools .resources-link a {
    color: #007bff; /* Blue color for the link */
    text-decoration: none;
    font-weight: bold;
}

.promotion-tools .resources-link a:hover {
    text-decoration: underline;
}

/* What is CourierX CMS Section */
.what-is-courierx {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    border: 3px solid #ff6600; /* Orange border */
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 40px;
}

.what-is-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center items vertically */
    gap: 20px;
    flex-wrap: wrap; /* Ensure responsiveness */
}

.what-is-left {
    flex: 1;
    text-align: left;
}

.what-is-right {
    flex: 1;
    text-align: center;
}

.what-is-right .what-is-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: Rounded corners for the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for the image */
}

.what-is-courierx h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Orange color for the heading */
    margin-bottom: 20px;
}

.what-is-courierx .description {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.what-is-courierx ul.features-list,
.what-is-courierx ul.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.what-is-courierx ul.features-list li,
.what-is-courierx ul.benefits-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.what-is-courierx ul.features-list li strong {
    color: #333; /* Highlighted text color */
}

.what-is-courierx .cta {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    color: #007bff; /* Blue color for emphasis */
}

/* Affiliate Terms and Conditions Section */
.affiliate-terms {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    border-radius: 8px; /* Rounded corners */
    margin: 40px auto; /* Center the section horizontally */
    max-width: 800px; /* Limit the width of the section */
    text-align: left; /* Align text to the left */
}

.affiliate-terms h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Orange color for the heading */
    margin-bottom: 20px;
}

.affiliate-terms .effective-date {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #555;
}

.affiliate-terms p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.affiliate-terms .terms-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin-top: 20px;
}

.affiliate-terms .terms-list li {
    margin-bottom: 20px;
}

.affiliate-terms .terms-list li strong {
    font-size: 1.1rem;
    color: #333;
}

/* Contact Us Section */
.contact-us {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px; /* Rounded corners */
    margin: 40px auto; /* Center the section horizontally */
    max-width: 600px; /* Limit the width of the section */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a card effect */
}

.contact-us h2 {
    font-size: 2rem;
    color: #ff6600; /* Orange color for the heading */
    margin-bottom: 20px;
}

.contact-us p {
    font-size: 1rem;
    color: #333; /* Dark text color */
    line-height: 1.6;
}

.contact-us a {
    color: #007bff; /* Blue color for the email link */
    text-decoration: none;
    font-weight: bold;
}

.contact-us a:hover {
    text-decoration: underline; /* Underline on hover for emphasis */
}

/* Footer Section */
.footer {
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; /* Ensure responsiveness */
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-middle, .footer-right {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-left h3 {
    font-size: 1.8rem;
    color: #ff6600; /* Orange color for the brand name */
    margin-bottom: 10px;
}

.footer-middle h4, .footer-right h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff6600; /* Orange color for headings */
}

.footer-middle ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-middle ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.footer-middle ul li a:hover {
    text-decoration: underline;
}

.footer-right p {
    margin: 5px 0;
    font-size: 1rem;
}

.footer-right .social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 10px;
    transition: color 0.3s;
}

.footer-right .social-icons a:hover {
    color: #ff6600; /* Orange hover effect for social icons */
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 0.9rem;
    color: #aaa;
}