@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/Inter-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Inter-Bold.woff2') format('woff2');
}

.site-header .logo img {
  height: 48px;
  width: auto;
  display: block;
  vertical-align: middle;
  max-height: none;
  opacity: 1;
  visibility: visible;
  position: static;
  margin: 0;
  padding: 0;
}

.footer-about .footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  max-height: 40px;
  opacity: 0.9;
  margin-left: auto;
  margin-right: auto;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    justify-content: flex-start;
}

.social-icons a {
  display: inline-block;
  opacity: 0.8;
  transition: var(--transition);
  background-color: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
}

.social-icons a:hover,
.social-icons a:focus {
    opacity: 1;
    background-color: transparent;
    transform: translateY(-3px);
}

.social-icons img.social-icon {
  height: 24px;
  width: 24px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

:root {
    --primary-color: #BB1546;
    --secondary-color: #3A506B;
    --accent-color: #4ECDC4;
    --text-color: #2d3745;
    --light-text-color: #595959;
    --background-color: #ffff;
    --section-bg-color: #f8f9fa;
    --card-bg-color: #ffff;
    --border-color: #e5e5e5;
    --container-width: 1200px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-primary: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-secondary: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.75em;
    line-height: 1.3;
    font-family: var(--font-secondary);
    font-weight: 600;
}
h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.25rem; color: var(--primary-color); font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1em; color: var(--light-text-color); }
a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover, a:focus { color: #9d113a; text-decoration: underline; }
ul { list-style: none; padding-left: 0; }
img { max-width: 100%; height: auto; display: block; }

.icon-svg {
    display: inline-block;
    vertical-align: middle;
}

.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

.button {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.button-primary {
    background-color: var(--primary-color);
    color: #fff;
}
.button-primary:hover, .button-primary:focus {
    background-color: var(--primary-color);
    filter: brightness(90%);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(187, 21, 70, 0.2);
}
.button-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}
.button-secondary:hover, .button-secondary:focus {
    background-color: var(--secondary-color);
    filter: brightness(90%);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(58, 80, 107, 0.2);
}

.site-header {
    background-color: var(--background-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-header .logo {
    display: flex;
    align-items: center;
}

.main-navigation {
    display: flex;
    align-items: center;
}
.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-navigation li {
    margin-left: 30px;
}
.main-navigation a:not(.button) {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-secondary);
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}
.main-navigation a:not(.button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.main-navigation a:not(.button):hover::after,
.main-navigation a:not(.button):focus::after {
    width: 100%;
}

.mobile-menu-button-item {
    display: none;
    margin-left: 0;
    margin-top: 15px;
    padding: 0 20px;
    width: 100%;
}
.mobile-menu-button-item .button {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}
.hamburger::before {
    top: -8px;
}
.hamburger::after {
    bottom: -8px;
}
.menu-toggle.active .hamburger {
    background-color: transparent;
}
.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.hero-section {
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('images/ppv-hero-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #333;
    border-radius: 0 0 50px 50px;
}
.hero-section p {
    color: inherit;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section .button {
    padding: 15px 35px;
    font-size: 1.1rem;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

section {
    padding: 80px 0;
}
section:nth-child(even):not(.hero-section):not(.social-proof-section) {
    background-color: var(--section-bg-color);
}

.section-with-image .container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.section-with-image .text-content {
    flex: 1;
    min-width: 300px;
}
.section-with-image .image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.section-with-image .image-content img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 480px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: var(--transition);
}
.section-with-image .image-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
#eu-kv.section-with-image .container {
    flex-direction: row-reverse;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.card {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-icon {
    margin-bottom: 20px;
    line-height: 1;
}
.card-icon .card-icon-svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: var(--primary-color); 
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.eu-kv-section li .list-icon-svg {
    fill: var(--primary-color); 
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
    top: 0.25em;
}

.social-proof-content .social-proof-icon-svg {
    width: 3rem;
    height: 3rem;
    fill: #fff;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.info-box {
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

.info-section h2,
.approach-section h2,
.eu-kv-section h2,
.no-insurance-section h2,
.contact-section h2 {
    text-align: center;
    margin-bottom: 1.5em;
}
.section-with-image .text-content h2 {
    text-align: left;
}
.eu-kv-section ul {
    list-style: none;
    padding-left: 0;
    max-width: none;
    margin: 20px 0 0 0;
}
.eu-kv-section li {
    margin-bottom: 1em;
    color: var(--light-text-color);
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: flex-start;
}
.eu-kv-section li .list-icon-svg {
    fill: var(--primary-color);
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
    top: 0.25em;
}

.social-proof-section {
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
}
.social-proof-content {
    max-width: 800px;
    margin: 0 auto;
}
.social-proof-content .social-proof-icon-svg {
    width: 3rem;
    height: 3rem;
    fill: #fff;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-section p {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.5em;
}
.social-proof-section .button {
    background-color: #fff;
    color: var(--primary-color);
}
.social-proof-section .button:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
    filter: none;
    box-shadow: 0 6px 12px rgba(255,255,255,0.2);
}

.contact-section {
}

.site-footer {
    background-color: var(--text-color);
    color: #ccc;
    padding-top: 70px;
    padding-bottom: 20px;
    font-size: 0.95rem;
}
.site-footer .container:first-child {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.site-footer h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}
.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}
.site-footer a:hover, .site-footer a:focus {
    color: #fff;
    text-decoration: underline;
}
.footer-about, .footer-nav, .footer-legal, .footer-contact {
    flex: 1;
    min-width: 200px;
}
.footer-about p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
    padding: 0;
}
.footer-nav li, .footer-legal li {
    margin-bottom: 12px;
}
.footer-contact p {
    margin-bottom: 20px;
}
.footer-contact .button {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
}
.footer-contact .button:hover {
    background-color: var(--secondary-color);
    filter: brightness(90%);
    color: #fff;
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}
.footer-bottom p {
    margin-bottom: 5px;
    color: #aaa;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 200px 0;
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('images/ppv-hero.webp');
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    .contact-section .contact-card {
        flex-basis: 45%;
    }
    h1 {
        font-size: 2.4rem;
    }
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }
    .site-header .container {
        justify-content: space-between;
    }
    .menu-toggle {
        display: block;
    }
    .main-navigation .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out, visibility 0s linear 0.4s;
        z-index: 100;
    }
    .main-navigation .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease-in, opacity 0.3s ease-in, visibility 0s linear 0s;
    }
    .main-navigation li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    .main-navigation li a:not(.button) {
        display: block;
        padding: 10px 20px;
    }
    .main-navigation li a:not(.button)::after {
        display: none;
    }

    .main-navigation .nav-menu.active .mobile-menu-button-item {
        display: block;
    }

    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .hero-section {
        padding: 120px 0;
        border-radius: 0 0 30px 30px;
    }
    h1 {
        font-size: 2.2rem;
    }
    section {
        padding: 60px 0;
    }
    .section-with-image .container {
        flex-direction: column;
        gap: 40px;
    }
    #eu-kv.section-with-image .container {
        flex-direction: column;
    }
    .section-with-image .image-content {
        margin-top: 20px;
    }
    #eu-kv.section-with-image .image-content {
        order: -1;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .section-with-image .text-content h2 {
        text-align: center;
    }
    .contact-section .contact-details {
        flex-direction: column;
        align-items: center;
    }
    .contact-section .contact-card {
        flex-basis: 100%;
        max-width: 400px;
    }
    .site-footer .container:first-child {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav ul, .footer-legal ul {
        padding: 0;
    }
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    .button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .hero-section {
        padding: 100px 0 80px;
        border-radius: 0 0 20px 20px;
    }
    .hero-section .button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .card {
        padding: 25px;
    }
    .contact-section .contact-card {
        padding: 25px;
    }
}

.hero-icon {
  width: 24px;  
  height: 24px; 
}

.hero-icon.users-icon {
    color: white;
    width: 76px; 
    height: 44px; 
}

.hero-icon.shield-icon {
    color: var(--primary-color);
}