body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #1a2a4a; /* Dark Blue */
    color: #ecf0f1; /* Light Gray for text */
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e74c3c; /* Accent Red */
    color: #fff;
}

.btn-primary:hover {
    background-color: #c0392b; /* Darker Red */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #3498db; /* Secondary Blue */
    color: #fff;
}

.btn-secondary:hover {
    background-color: #2980b9; /* Darker Secondary Blue */
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: #5a6a8a; /* Muted Blue */
    color: #fff;
}

.btn-tertiary:hover {
    background-color: #4a5a7a;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.8rem;
    color: #ecf0f1;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e74c3c;
    border-radius: 2px;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #2c3e50; /* Darker blue-gray */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content h2, .modal-content h3 {
    color: #e74c3c;
    margin-top: 0;
    font-size: 1.8rem;
}
@media (max-width:575px) {
    .modal-content h2, .modal-content h3 {
  
    font-size: 1rem;
}
.modal-content {
    background-color: #2c3e50; 
    padding: 15px;
}}
.modal-content p {
    color: #ecf0f1;
    margin-bottom: 15px;
}

.age-buttons, .cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-categories {
    text-align: left;
    margin-bottom: 30px;
}

.cookie-category-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    user-select: none;
    color: #ecf0f1;
}

.cookie-category-item input[type="checkbox"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #e74c3c;
}

.cookie-category-item span {
    font-weight: 600;
}

.cookie-category-item .category-description {
    font-weight: 300;
    font-size: 0.9em;
    margin-left: 10px;
    color: #bdc3c7;
}

.cookie-policy-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

/* Top Bar */
.top-bar {
    background-color: red; /* Darker blue-gray */
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid rgba(236, 240, 241, 0.1);
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-restriction {
    background-color: rgb(255, 123, 0); /* Accent Red */
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-right: 15px;
    white-space: nowrap;
}

.top-bar-text {
    margin: 0;
    color: white;
    flex-grow: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    .age-restriction {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .top-bar-text {
        text-align: center;
    }
}

/* Header */
.main-header {
    background-color: #1a2a4a;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(236, 240, 241, 0.1);
}

.main-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 30px;
}

.site-logo-link {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ecf0f1;
}

.site-logo {
    height: 60px;
    margin-right: 15px;
}

.site-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: 1px;
}

.header-content {
    max-width: 800px;
    margin-top: 20px;
}

.main-title {
    font-size: 3.2rem;
    color: #ecf0f1;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sub-title {
    font-size: 1.3rem;
    color: #bdc3c7;
    margin-bottom: 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url('images/pics/hero-background_13.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
}

.hero-description {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #bdc3c7;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
}

.hero-section .btn {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out 0.4s, transform 1s ease-out 0.4s;
}

.hero-title.animate, .hero-description.animate, .hero-section .btn.animate {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-section {
      padding: 40px 0;
    background-color: #2c3e50; /* Darker blue-gray */
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-content.animate {
    opacity: 1;
    transform: translateY(0);
}



.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #bdc3c7;
}
@media (max-width:575px) {
    .about-text p {
    font-size: 0.9rem;
}}
@media (min-width:576px) {
    .about-text {
    flex: 2;
    min-width: 300px;
}
}
.about-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ecf0f1;
    display: flex;
    align-items: center;
}

.about-features li i {
    color: #e74c3c;
    margin-right: 10px;
    font-size: 1.3rem;
}

.about-image-wrapper {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Gaming Platforms Section */
.gaming-platforms-section {
      padding: 40px 0;
    background-color: #1a2a4a;
}

.platform-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.platform-card {
    background-color: #2c3e50;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.platform-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.card-image-link {
    flex-shrink: 0;
    width: 250px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 30px;
    display: block;
}

.card-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.card-content {
    flex-grow: 1;
}

.card-title {
    font-size: 2.2rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.card-description {
    font-size: 1rem;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.card-license {
    font-size: 0.95rem;
    color: #ecf0f1;
    margin-bottom: 10px;
    font-weight: 600;
}

.anj-license-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.anj-license-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.card-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating-score {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin-right: 10px;
}

.card-rating .stars i {
    color: #f39c12; /* Gold color for stars */
    font-size: 1.2rem;
    margin-right: 2px;
}

.card-bonus {
    font-size: 1rem;
    color: #ecf0f1;
    margin-bottom: 20px;
    padding-left: 5px;
    border-left: 3px solid #e74c3c;
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.payment-icon {
    height: 30px;
    width: auto;
    filter: grayscale(0%); /* Ensure color */
    transition: transform 0.2s ease;
}

.payment-icon:hover {
    transform: translateY(-3px);
}

.card-cta {
    width: auto;
    padding: 15px 30px;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .platform-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .card-image-link {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        max-width: 300px;
        height: 130px;
    }
    .card-rating, .payment-icons {
        justify-content: center;
    }
    .card-bonus {
        text-align: left;
    }
}

/* Featured Slider Section */
.featured-slider-section {
      padding: 40px 0;
    background-color: #2c3e50;
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slider-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slider-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    background-color: #1a2a4a;
    padding: 40px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.slider-image {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 30px;
    flex-shrink: 0;
}

.slider-content {
    flex-grow: 1;
}

.slider-content h3 {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.slider-content p {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 25px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #e74c3c;
}

@media (max-width: 768px) {
    .slider-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .slider-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .slider-nav {
        padding: 10px 8px;
        font-size: 1.2rem;
    }
}

/* FAQ Section */
.faq-section {
      padding: 40px 0;
    background-color: #1a2a4a;
}

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

.accordion-item {
    background-color: #2c3e50;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.accordion-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.accordion-header {
    width: 100%;
    background-color: #34495e; /* Slightly lighter dark blue */
    color: #ecf0f1;
    padding: 20px 25px;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #4a627a;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.accordion-content.active {
    max-height: 200px; /* Adjust based on content height */
    padding: 20px 25px;
}

.accordion-content p {
    color: #bdc3c7;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
      padding: 40px 0;
    background-color: #2c3e50;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* всегда 2 элемента в ряд */
    gap: 30px;
}
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr; /* на мобильном по одному */
    }
}
.review-item {
    background-color: #1a2a4a;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure equal height */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.review-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #e74c3c;
}

.review-author {
    font-size: 1.4rem;
    color: #e74c3c;
    margin: 0;
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars i {
    color: #f39c12;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1rem;
    color: #bdc3c7;
    flex-grow: 1;
}

/* ANJ Significance Section */
.anj-section {
      padding: 40px 0;
    background-color: #1a2a4a;
    text-align: center;
}

.anj-section p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    color: #bdc3c7;
}

.anj-link-wrapper {
    margin-top: 40px;
}

.anj-more-info {
    font-size: 1.1rem;
    padding: 12px 30px;
}

/* CTA Section */
.cta-section {
      padding: 40px 0;
    background-color: #e74c3c; /* Accent Red */
    text-align: center;
    color: #fff;
}

.cta-section  {
    color: #fff;
}

.cta-section .section-title::after {
    background-color: #fff;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-description.animate {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    flex-grow: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1a2a4a;
    transition: background-color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background-color: #fff;
}

.newsletter-form input[type="email"].animate {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-form .btn {
    padding: 15px 35px;
    background-color: #1a2a4a;
    color: #fff;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.newsletter-form .btn:hover {
    background-color: #2c3e50;
}

.newsletter-form .btn.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #2c3e50; /* Darker blue-gray */
      padding: 40px 0;
    border-top: 5px solid #e74c3c; /* Red border to highlight */
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.disclaimer-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.disclaimer-title {
    color: #e74c3c;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-title i {
    margin-right: 15px;
    font-size: 2.8rem;
}

.disclaimer-section p, .disclaimer-section li {
    max-width: 900px;
    margin: 0 auto 15px auto;
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.7;
}

.disclaimer-section h3 {
    color: #ecf0f1;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-section h3 i {
    margin-right: 10px;
    color: #3498db;
    font-size: 2rem;
}

.disclaimer-section ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.disclaimer-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.disclaimer-section ul li::before {
    content: '•';
    color: #e74c3c;
    position: absolute;
    left: 0;
}

.disclaimer-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.disclaimer-section a:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: #1a2a4a;
    padding: 50px 0 20px 0;
    text-align: center;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}

.main-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(236, 240, 241, 0.1);
}

.main-footer .logo-container {
    margin-bottom: 0;
}

.main-footer .site-logo {
    height: 50px;
}

.main-footer .site-name {
    font-size: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    justify-content: center;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-contact p {
    margin: 0;
    color: #bdc3c7;
}

.footer-contact a {
    color: #3498db;
    text-decoration: none;
}

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

.footer-bottom {
    margin-top: 30px;
}

.footer-org-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-org-logo {
    max-width: 130px;
    height: auto;
    filter: grayscale(0%); /* Ensure color */
    transition: transform 0.2s ease;
}

.footer-org-logo:hover {
    transform: scale(1.05);
}

.18plus-logo {
    max-width: 60px;
    height: auto;
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .main-header {
        padding: 30px 0;
    }
    .site-logo {
        height: 50px;
    }
    .site-name {
        font-size: 2rem;
    }
    .main-title {
        font-size: 2.5rem;
    }
    .sub-title {
        font-size: 1.1rem;
    }
    .hero-section {
        height: 60vh;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-description {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image-wrapper {
        order: -1;
        margin-bottom: 30px;
    }
    .main-footer .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .footer-contact {
        margin-top: 20px;
    }
    .disclaimer-title {
        font-size: 2rem;
    }
    .disclaimer-title i {
        font-size: 2.2rem;
    }
    .disclaimer-section h3 {
        font-size: 1.5rem;
    }
    .disclaimer-section h3 i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .platform-card {
        padding: 15px;
    }
    .card-title {
        font-size: 1.8rem;
    }
    .card-bonus {
        font-size: 0.9rem;
    }
    .payment-icons {
        justify-content: center;
    }
    .newsletter-form input[type="email"] {
        min-width: unset;
        width: 100%;
    }
    .newsletter-form .btn {
        width: 100%;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .footer-org-logos {
        gap: 20px;
    }
    .footer-org-logo {
        max-width: 100px;
    }
}
/*
 * Base styles for the .infoGuardBlock container
 * Provides internal padding for content separation from the block edges.
 */
.infoGuardBlock {
    padding: 25px 30px; /* Top/bottom padding 25px, left/right padding 30px */
    /* You can add more styles here if needed, e.g., background, border, etc. */
}

/*
 * Stock heading styles within .infoGuardBlock
 * Font sizes are kept moderate, not overly large.
 */
.infoGuardBlock h1 {
    font-size: 1.8em; /* Approximately 28.8px if base is 16px */
    font-weight: 700; /* Bold */
    line-height: 1.2;
    margin-top: 0.8em;
    margin-bottom: 0.6em;
}

.infoGuardBlock h2 {
    font-size: 1.5em; /* Approximately 24px */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0.7em;
    margin-bottom: 0.5em;
}

.infoGuardBlock h3 {
    font-size: 1.3em; /* Approximately 20.8px */
    font-weight: 600; /* Slightly less bold than h1/h2 */
    line-height: 1.4;
    margin-top: 0.6em;
    margin-bottom: 0.4em;
}

.infoGuardBlock h4 {
    font-size: 1.1em; /* Approximately 17.6px */
    font-weight: 600;
    line-height: 1.5;
    margin-top: 0.5em;
    margin-bottom: 0.3em;
}

.infoGuardBlock h5 {
    font-size: 1em; /* Approximately 16px, same as body text but bold */
    font-weight: 600;
    line-height: 1.6;
    margin-top: 0.4em;
    margin-bottom: 0.2em;
}

/*
 * Stock paragraph styles within .infoGuardBlock
 */
.infoGuardBlock p {
    font-size: 1em; /* Standard body text size */
    line-height: 1.6; /* Good for readability */
    margin-top: 0;
    margin-bottom: 1em; /* Space between paragraphs */
}

/*
 * Stock unordered list styles within .infoGuardBlock
 */
.infoGuardBlock ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 0.5em;
    margin-bottom: 1em;
    padding-left: 1.5em; /* Indentation for bullet points */
}

/*
 * Stock list item styles within .infoGuardBlock
 */
.infoGuardBlock li {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 0.5em; /* Space between list items */
}

/* Remove bottom margin for the last paragraph or list item
   if it's the last child within .infoGuardBlock to prevent extra space */
.infoGuardBlock p:last-child,
.infoGuardBlock ul:last-child {
    margin-bottom: 0;
}
