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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004c99;
}

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

ul {
    list-style-position: inside;
}

.main-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #0066cc;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
    min-width: 0;
}

.split-left img,
.split-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-split {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-split h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #495057;
    line-height: 1.6;
}

.hero-split p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    color: #ffffff;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #0066cc;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 6px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.scandal-intro {
    padding: 6rem 0;
}

.scandal-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.scandal-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #495057;
}

.highlight-text {
    background: #fff3cd;
    padding: 1.2rem;
    border-left: 4px solid #ffc107;
    font-weight: 600;
    color: #856404;
    margin-top: 2rem;
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-building {
    padding: 5rem 0;
    background: #f8f9fa;
}

.trust-building h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.problem-amplification {
    padding: 6rem 0;
}

.problem-amplification h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problem-list {
    margin: 2rem 0;
    list-style: none;
}

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid #e9ecef;
}

.problem-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-size: 1.3rem;
}

.emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: #dc3545;
    margin-top: 2rem;
}

.testimonial-inline {
    padding: 4rem 0;
    background: #343a40;
    color: #ffffff;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-inline p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-inline cite {
    font-style: normal;
    color: #adb5bd;
    font-size: 1rem;
}

.solution-reveal {
    padding: 6rem 0;
}

.solution-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.benefits-list {
    margin: 2rem 0;
    list-style: none;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 1.2rem;
}

.services-pricing {
    padding: 6rem 0;
    background: #f8f9fa;
}

.services-pricing h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #0066cc;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #0066cc;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: #495057;
    line-height: 1.6;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.service-price span {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.form-section {
    padding: 6rem 0;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-indicators {
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.trust-icon {
    color: #28a745;
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #218838;
    transform: translateY(-2px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
}

.urgency-section {
    padding: 5rem 0;
    background: #dc3545;
    color: #ffffff;
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.final-trust {
    padding: 6rem 0;
}

.final-trust h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.site-footer {
    background: #212529;
    color: #adb5bd;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #adb5bd;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1.2rem 2rem;
    background: #28a745;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #343a40;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    background: #218838;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #343a40;
}

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-story {
    padding: 6rem 0;
}

.mission-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.mission-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.team-expertise {
    padding: 6rem 0;
}

.expertise-list {
    margin: 2rem 0;
    list-style: none;
}

.expertise-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.values-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.stats-section {
    padding: 5rem 0;
    background: #0066cc;
    color: #ffffff;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-about {
    padding: 5rem 0;
    text-align: center;
}

.services-intro {
    padding: 3rem 0;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail {
    padding: 4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.service-detail:last-child {
    border-bottom: none;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.service-duration {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 1.5rem;
}

.comparison-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.comparison-note {
    text-align: center;
    font-size: 1.1rem;
    color: #495057;
}

.services-cta {
    padding: 5rem 0;
    text-align: center;
}

.contact-main {
    padding: 5rem 0;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.sub-contact {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #6c757d;
}

.note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 0.5rem;
}

.response-time {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.response-time ul {
    margin-top: 1rem;
    list-style: none;
}

.response-time li {
    padding: 0.5rem 0;
}

.contact-sidebar {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
}

.secure-channels {
    margin-top: 2rem;
}

.channel-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.channel-item:last-child {
    border-bottom: none;
}

.channel-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
}

.channel-item small {
    color: #6c757d;
}

.security-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.security-notice strong {
    color: #856404;
}

.map-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.map-placeholder {
    position: relative;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

.directions {
    margin-top: 2rem;
}

.directions ul {
    margin-top: 1rem;
    list-style: none;
}

.directions li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.faq-contact {
    padding: 5rem 0;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 48%;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.final-cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: #ffffff;
}

.final-cta h2 {
    color: #ffffff;
}

.legal-page {
    padding: 4rem 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.updated {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #495057;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content strong {
    color: #1a1a1a;
}

.legal-note {
    margin-top: 3rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    font-size: 0.9rem;
    color: #6c757d;
}

.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-page {
    padding: 5rem 0;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.thanks-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #495057;
    margin-bottom: 3rem;
}

.thanks-details {
    margin: 2rem 0;
}

.selected-service-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.step-list {
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #495057;
    line-height: 1.6;
}

.thanks-actions {
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #0066cc;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0052a3;
    color: #ffffff;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.emergency-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff3cd;
    border-radius: 8px;
    text-align: left;
}

.emergency-note strong {
    color: #856404;
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        gap: 2rem;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .hero-split h1 {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        flex-direction: column;
    }

    .faq-item {
        max-width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-split h1 {
        font-size: 1.6rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .centered-content {
        padding: 0 1rem;
    }
}