/* 
* ATT Mobile Top Up Website Styles
* Theme Colors: Blue and White
* Primary: #0057b8 (AT&T Blue)
* Secondary: #00a8e0 (Light Blue)
* Accent: #ff7700 (Orange)
* Background: #ffffff (White)
* Text: #333333 (Dark Gray)
*/

/* === Base Styles === */
:root {
    --primary: #0057b8;
    --primary-dark: #004494;
    --secondary: #00a8e0;
    --secondary-dark: #0090c2;
    --accent: #ff7700;
    --accent-dark: #e66900;
    --background: #ffffff;
    --light-bg: #f8f9fa;
    --gray-light: #f0f2f5;
    --gray: #e9ecef;
    --gray-dark: #dee2e6;
    --text: #333333;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --border: #dee2e6;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --section-spacing: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 20px;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 20px;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--text-white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* === Header === */
header {
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    max-height: 50px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 500;
    color: var(--text);
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a.active {
    color: var(--primary);
}

nav a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

/* === Hero Section === */
.hero {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* === Features Section === */
.features {
    background-color: var(--background);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 87, 184, 0.1);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* === Latest Posts Section === */
.latest-posts {
    background-color: var(--light-bg);
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: var(--background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-image {
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    margin-top: 15px;
    color: var(--primary);
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* === Testimonials Section === */
.testimonials {
    background-color: var(--background);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    position: relative;
    padding-top: 20px;
    margin-bottom: 20px;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -10px;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* === CTA Section === */
.cta-section {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: var(--text-white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background-color: var(--gray);
}

.cta-section .btn-outline {
    border-color: var(--text-white);
    color: var(--text-white);
}

.cta-section .btn-outline:hover {
    background-color: var(--text-white);
    color: var(--primary);
}

/* === Footer === */
footer {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--text-white);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

/* === Page Banner === */
.page-banner {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 60px 0;
    text-align: center;
}

.page-banner h2 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === Services Page === */
.services-summary {
    padding-bottom: 0;
}

.summary-box {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.summary-box h3 {
    margin-bottom: 15px;
}

.summary-box p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    display: flex;
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.service-icon {
    padding: 30px;
    background-color: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content {
    padding: 30px;
    flex: 1;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.service-features {
    margin: 20px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.how-it-works {
    background-color: var(--light-bg);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 70px;
    left: 25px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--primary);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 25px;
    flex-shrink: 0;
    z-index: 1;
}

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    margin-bottom: 10px;
}

/* === Blog Page === */
.blog-summary {
    padding-bottom: 0;
}

.blog-posts {
    margin-top: 40px;
}

.blog-post {
    display: flex;
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.blog-post .post-image {
    flex: 1;
    max-width: 300px;
}

.blog-post .post-image img {
    height: 100%;
    object-fit: cover;
}

.blog-post .post-content {
    flex: 2;
    padding: 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-numbers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background-color: var(--gray-light);
    color: var(--text);
    font-weight: 500;
}

.page-numbers a.active {
    background-color: var(--primary);
    color: var(--text-white);
}

.subscribe {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-form {
    display: flex;
    margin: 30px 0 20px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.subscribe-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.related-resources {
    background-color: var(--background);
}

.related-resources h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.resource-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.resource-card h3 {
    margin-bottom: 10px;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    font-weight: 500;
    color: var(--primary);
}

.resource-link:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.resource-link:hover:after {
    margin-left: 10px;
}

/* === About Page === */
.about-intro {
    padding-bottom: 40px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 3;
}

.about-image {
    flex: 2;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.mission-values {
    background-color: var(--light-bg);
    padding-top: 60px;
}

.mission-box {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 50px;
}

.mission-box h2 {
    color: var(--text-white);
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.team-section {
    padding: 80px 0;
}

.team-section h2, .section-intro {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p:first-of-type {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--gray-light);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

.milestones {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.milestones h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid var(--background);
    z-index: 1;
}

.timeline-content {
    background-color: var(--background);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

/* === Contact Page === */
.contact-options {
    padding-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-method {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-method h3 {
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
    color: var(--primary);
}

.chat-link {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 50px;
}

.chat-link:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

.contact-form-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.contact-form-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background-color: var(--background);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 10px;
}

.contact-form {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.form-submit {
    grid-column: span 2;
    text-align: right;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--background);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span {
    font-weight: 500;
}

.location-map {
    padding-top: 0;
}

.location-map h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* === FAQ Section === */
.faq {
    background-color: var(--background);
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    width: 100%;
    text-align: left;
    background-color: var(--gray-light);
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.accordion-button:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.2rem;
}

.accordion-button.active {
    background-color: var(--primary);
    color: var(--text-white);
}

.accordion-button.active:after {
    content: '−';
}

.accordion-content {
    background-color: var(--background);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-content p {
    padding: 20px;
    margin: 0;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

/* === Blog Post Page === */
.blog-post-content {
    padding: 60px 0;
}

.post-header {
    margin-bottom: 30px;
}

.post-header h2 {
    color: var(--primary);
}

.post-summary {
    background-color: var(--light-bg);
    padding: 20px;
    border-left: 5px solid var(--primary);
    margin-bottom: 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-summary p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.blog-post-content .post-image {
    margin-bottom: 30px;
}

.blog-post-content .post-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.post-body {
    margin-bottom: 40px;
}

.post-body h3 {
    color: var(--primary);
    margin-top: 40px;
}

.post-body h4 {
    margin-top: 30px;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-body ul li, .post-body ol li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.post-body ul {
    list-style-type: disc;
}

.post-body ol {
    list-style-type: decimal;
}

.info-box, .warning-box {
    padding: 20px;
    margin: 30px 0;
    border-radius: var(--border-radius);
}

.info-box {
    background-color: rgba(0, 168, 224, 0.1);
    border-left: 5px solid var(--secondary);
}

.warning-box {
    background-color: rgba(255, 119, 0, 0.1);
    border-left: 5px solid var(--accent);
}

.info-box h4, .warning-box h4 {
    margin-top: 0;
}

.plan-comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.plan-comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.plan-comparison-table th, .plan-comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.plan-comparison-table th {
    background-color: var(--primary);
    color: var(--text-white);
}

.plan-comparison-table tr:nth-child(even) {
    background-color: var(--gray-light);
}

.post-tags {
    margin-bottom: 20px;
}

.post-tags span {
    font-weight: 500;
}

.post-tags a {
    display: inline-block;
    background-color: var(--gray-light);
    padding: 5px 12px;
    border-radius: 50px;
    margin: 5px;
    font-size: 0.9rem;
}

.post-tags a:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.post-share span {
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--gray-light);
    border-radius: 50%;
    color: var(--text);
    transition: var(--transition);
}

.share-buttons a:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

.related-posts {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-post {
    background-color: var(--background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post h3 {
    margin-top: 0;
}

.related-post > * {
    padding: 0 20px;
}

.related-post > *:first-child {
    padding: 0;
}

.related-post .read-more {
    margin: 15px 0 20px;
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 10px;
}

.cookie-link {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* === Thank You Popup === */
.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.thank-you-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--background);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.thank-you-popup.show .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.thank-you-icon {
    color: var(--success);
    font-size: 3rem;
    margin-bottom: 20px;
}

/* === Responsive Styles === */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    header .container {
        flex-direction: column;
        padding-bottom: 0;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-icon {
        padding: 30px;
    }

    .blog-post {
        flex-direction: column;
    }

    .blog-post .post-image {
        max-width: 100%;
    }

    .contact-form-section .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .features-grid, .posts-grid, .values-grid, .resources-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-submit {
        grid-column: span 1;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .post-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-content {
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    header .container {
        padding: 15px 20px 0;
    }

    nav ul {
        gap: 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
    }

    .feature-card, .post-card, .testimonial, .value-card, .resource-card {
        padding: 20px;
    }

    .post-image img {
        height: 150px;
    }
}

/* === Print Styles === */
@media print {
    header, footer, .cta-section, .cookie-banner, .thank-you-popup {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
        line-height: 1.4;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }

    .blog-post-content .post-image img {
        max-height: 4in;
    }

    .post-share, .related-posts {
        display: none;
    }
}
