/* Section Styling */
img {
    border: none;
}

h2 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #a83232, #a83232 50%, #a83232);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid #a83232;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    width: 85%;
    text-align: center;
    display: inline-block;
}

/* Section for Main Info */
.main-info {
    background-color: #f9f9f9;
    padding: 30px;
    border: 1px solid #a83232;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    width: 100%;
}

.main-info p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}
.details {
    border: 2px solid #a83232; /* Add a solid border with your main red color */
    padding: 20px; /* Add some padding inside the border */
    border-radius: 8px; /* Optional: round the corners */
    background-color: #f9f9f9; /* Optional: add a light background color */
	font-weight: 500;
	width: 80%;
	margin: 0 auto;
}

/* Section for Upgrade Options */
.upgrade-options {
    background-color: #ffffff;
    padding: 20px;
    border: 2px solid #a83232;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 95%;
	margin: 0 auto 25px auto;
	
}

.upgrade-options h3 {
    color: #a83232;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.upgrade-options ul {
    list-style-position: inside; /* Moves bullet points closer */
    padding: 0;
}

.upgrade-options li {
    margin-bottom: 10px;
    background-color: #f9f9f9;
    padding: 10px 0; /* Adjusted padding to remove spacing */
    border-radius: 8px;
    border: 2px solid #a83232;
}

.upgrade-options li strong {
    color: #a83232;
}

/* Section for Why Upgrade */
.why-upgrade {
    background-color: #ffffff;
    padding: 20px;
    border: 2px solid #a83232;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    width: 95%;
}

.why-upgrade ul {
	list-style-position: inside;
	padding: 0;
}
.why-upgrade li {
	margin-bottom: 10px;
    background-color: #f9f9f9;
    padding: 10px 0;
    border-radius: 8px;
    border: 2px solid #a83232;
}
.why-upgrade li strong {
    color: #a83232;
}

.why-upgrade h3 {
    color: #a83232;
    font-size: 1.5rem;
    margin-bottom: 15px;
	
}
.content .cta-button {
	margin: -10px auto 0 auto;
	padding: 20px 10%;
}
.why-upgrade p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
}
/* Section for Optimizations */

.optimizations-section {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 0 auto;
    max-width: 1500px;
    width: 90%;
    border: 3px solid #a83232;
    margin-bottom: 20px;
}

.optimizations-section h3 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #a83232, #a83232 50%, #a83232);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid #a83232;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    width: 85%;
    margin: 0 auto 15px auto;
    text-align: center;
    display: inline-block;
}
.optimizations-section .details {
	margin-bottom: 15px;
	font-weight: 500;
}

.optimization-options {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
}

.optimization-option {
    background-color: #ffffff;
    padding: 20px;
    border: 2px solid #a83232;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%;
    text-align: center;
}

.optimization-option h4 {
    color: #a83232;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.optimization-option p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
}

.optimization-option ul {
    list-style: none;
    padding: 0;
}

.optimization-option li {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 2px solid #a83232;
}

.optimization-option li strong {
    color: #a83232;
}

/* Make Comparison Section */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table th,
.comparison-table td {
    border: 2px solid #a83232;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.comparison-table th {
    background-color: #a83232;
    color: white;
}

.comparison-table td {
    background-color: #ffffff;
}
.optimizations-section .cta-button {
	margin: 20px auto 10px auto;
	padding: 20px 10%;
}

/* General Section Styling Adjustments for Mobile */
@media (max-width: 768px) {

    section, .upgrade-options, .optimizations-section, .why-upgrade, .optimization-options, .optimization-option, .comparison-table {
        max-width: 100%; /* Ensure full width for mobile */
        padding: 5px;
        margin: 0 auto; /* Center sections on mobile */
    }
	.main {
		width: 80%;
	}
    .upgrade-options ul, .why-upgrade ul, .optimization-option ul {
        padding-left: 0; /* Removes unnecessary padding */
    }

    .upgrade-options li, .why-upgrade li, .optimization-option li {
        padding-left: 15px; /* Adds padding to ensure content is not crammed */
        text-align: center; /* Align text to the left for better readability */
        margin: 10px auto; /* Adds margin to center items and create spacing */
        width: 90%; /* Ensures list items don’t stretch too wide */
    }
	
    .optimization-options {
        flex-direction: column;
        width: 95%;
        margin: 0 auto; /* Center on mobile */
    }

    .optimizations-section {
        width: 90%;
        margin: 0 auto; /* Center the section */
    }

    .optimization-option {
        width: 100%; /* Full width for mobile */
        margin: 10px 0; /* Adds spacing between options */
		margin-left: -5px;
    }

    /* CTA Button Adjustments */
    .cta-button {
        max-width: 100%; /* Ensure full width for mobile */
        font-size: 1rem;
        margin: 10px 0; /* Adds some margin for better spacing */
    }

    .optimizations-section .cta-button {
        margin-top: 0;
    }

    /* Table Adjustments */
    .comparison-table th, .comparison-table td {
        display: none; 
	}

    /* Center the main headings */
    h2, h3 {
        text-align: center; /* Ensure headings are centered */
        width: 100%;
    }

    /* Ensure main descriptions are centered */
    .main-info, .details, .why-upgrade p {
        text-align: center;
        margin: 0 auto;
    }
}

