@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');

body {
    font-family: 'Kanit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
}

header {
    margin-top: -25px;
    margin-left: 50px;
    color: #fff;
    padding: 10px;
    text-align: left;
    position:absolute;
    left: 0;
    width: 400px;
    font-size: small;
}


footer {
    border-top: 1px red solid;
    color: #fff;
    text-align: center;
    padding: 2px;
    position:fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(25.5, 25.5, 25.5, 1);
}

.accent {
    color: red;
}
nav {
    margin-top: 10px;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav li{
    display: inline;
    margin-right: 20px;
    text-align: center;
}

nav a {
    width: 70px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
    display: block;
}

nav a:hover {
    color: #ff0000;
}

/* Center items within sections */
.content-section {
    display: none;
    text-align: center; /* Center align the content within each section */
    padding: 20px; /* Add some padding for spacing */
}

/* Center align text within sections */
.content-section h2,
.content-section p,
.content-section ul,
.content-section address {
    text-align: center;
}

/* Center align list items within sections */
.content-section ul {
    list-style-type: none;
    padding: 0;
}

.content-section ul li {
    text-align: center;
}

.product-container {
    margin-top: 75px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    align-items: center;
}

/* CSS style for product images */
.product-image {
    max-width: 100%;
    height: 500px !important;
}


.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-info {
font-size: larger;
}

.bottom-right-link {
    color: #333;
    position: absolute;
    bottom: 0px;
    right: 10px;
    margin-bottom: 2px;
}

.bottom-right-link a {
    color: #4b4b4b;
    transition: color 0.3s;
}

.bottom-right-link a:hover {
    color: red;
}

p, h1, h2, strong {
    color: #fff;
}
p {
    line-height: 1.4;
    margin-bottom: 15px;
}
.tos {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ff0000;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
    margin-bottom: 40px;
}

/* Stylish CSS for the "Introducing Expedite Optimizer V2" section */

#expedite-v2-section {
    padding: 40px;
    text-align: center;
}

#expedite-v2-section h2 {
    color: #ff0000;
    font-size: 28px;
    margin-bottom: 20px;
}

#expedite-v2-section p {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

#expedite-v2-section .accent {
    color: #ff0000;
    font-weight: bold;
}

/* Center the feature grid */
.feature-grid {
    position: relative;
    width: 100%;
    width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px auto; /* Center the grid vertically by using auto margin */
    margin-bottom: 50px;
}

.feature-card {
    border: 1px solid red;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
    width: 250px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px red;
}

.feature-card h4 {
    margin-top: 0;
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666 !important;
    font-size: 16px !important;
    line-height: 1.4;
    margin: 0;
    text-align: center; /* Center the text horizontally */
}
/* Stylish CSS for the "Pricing" section */

#expedite-v2-section #pricing-section h3 {
    color: #ff0000;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
}

#expedite-v2-section .pricing-card.split-card {
    background-color: #444;
    display: flex;
    flex-direction: row; /* Arrange pricing options horizontally */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

#expedite-v2-section .pricing-card.split-card .plan-details {
    flex: 1; /* Distribute space equally for each pricing option */
    padding: 20px;
}

#expedite-v2-section .pricing-card.split-card h4 {
    color: #ff0000;
    font-size: 20px;
    margin-bottom: 10px;
}

#expedite-v2-section .pricing-card.split-card p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

#expedite-v2-section .pricing-card.split-card .cta-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#expedite-v2-section .pricing-card.split-card .cta-button a.btn {
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

#expedite-v2-section .pricing-card.split-card .cta-button a.btn:hover {
    background-color: #d60000;
}

/* Divider Line */
#expedite-v2-section .pricing-card.split-card .divider {
    width: 1px;
    background-color: #fff;
    margin: 0 20px; /* Adjust the margin as needed */
}
#benefits-title {
    font-size: 26px;
    color: #ff0000;
}
#pricing-title {
    font-size: 26px !important;
    color: #ff0000 !important;
}

#expedite-v2-section h2 {
    color: #ff0000;
    font-size: 28px;
    margin-bottom: 20px;
}

#expedite-v2-section p {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

#expedite-v2-section .accent {
    color: #ff0000;
    font-weight: bold;
}

/* Animation classes */
#expedite-v2-section .animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#expedite-v2-section .animate-slide-up {
    transform: translateY(20px);
    animation: slideUp 0.5s ease-in-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}
#expedite-v2-section h2.special-text {
    font-size: 36px;
    font-weight: bolder;
    color: #ff0000;
    background-color: #222222; /* Dark background color */
    padding: 10px 20px;
    border-radius: 10px; /* Rounded corners */
    text-transform: uppercase; /* Uppercase text */
    letter-spacing: 3px; /* Increased letter spacing */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle box shadow */
    text-align: center; /* Center align text */
}

/* CSS for making text stand out with gradient color */
#expedite-v2-section .standout {
    background: linear-gradient(45deg, #ff0000, #ff6600); /* Gradient background */
    -webkit-background-clip: text; /* Clip text to background */
    background-clip: text; /* Clip text to background */
    color: transparent; /* Make the text transparent */
}
#expedite-v2-section .introduction {
    background: linear-gradient(45deg, #ff0000, #ff6600); /* Gradient background */
    -webkit-background-clip: text; /* Clip text to background */
    background-clip: text; /* Clip text to background */
    color: transparent; /* Make the text transparent */
    text-transform: uppercase; /* Uppercase text */
    text-emphasis: ;
}
