* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: #546e7a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover,
.nav-right a.active {
    color: #1e88e5;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1e88e5;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1e88e5;
    font-weight: 600;
    border: 2px solid #1e88e5;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-secondary:hover {
    background-color: #1e88e5;
    color: #ffffff;
}

.trust-bar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e88e5;
}

.trust-label {
    font-size: 1rem;
    color: #546e7a;
}

.intro-offset {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 5rem 5%;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
}

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

.services-grid {
    padding: 5rem 5%;
    background-color: #fafbfc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #546e7a;
}

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid #1e88e5;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #1e88e5;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e88e5;
}

.service-card p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    color: #546e7a;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #1e88e5;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1565c0;
}

.why-different {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.why-different h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.difference-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.diff-item p {
    color: #546e7a;
    line-height: 1.7;
}

.testimonials-stacked {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.testimonials-stacked h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-block {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #1e88e5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #546e7a;
}

.cta-inline {
    padding: 4rem 5%;
    text-align: center;
    background-color: #1e88e5;
    color: #ffffff;
}

.cta-inline h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-inline p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.faq-accordion {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.faq-accordion h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

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

.faq-item p {
    color: #546e7a;
    line-height: 1.7;
}

.final-cta-split {
    display: flex;
    flex-direction: column;
    background-color: #fafbfc;
}

.final-cta-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-cta-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.final-cta-left p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-final {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1e88e5;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    max-width: 300px;
}

.cta-final:hover {
    background-color: #1565c0;
}

.final-cta-right {
    flex: 1;
}

.final-cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    padding: 5rem 5%;
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    color: #546e7a;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    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: #1e88e5;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.btn-submit {
    padding: 1.2rem;
    background-color: #1e88e5;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1565c0;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1rem;
}

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

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

.footer-col p,
.footer-col a {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-cookie-accept {
    background-color: #1e88e5;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #1565c0;
}

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

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1500;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta button {
    padding: 1rem 2rem;
    background-color: #1e88e5;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background-color: #1565c0;
    transform: scale(1.05);
}

.page-hero {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e88e5;
    margin-bottom: 1.5rem;
}

.service-info h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.service-info ul {
    margin-bottom: 2rem;
}

.service-info li {
    margin-bottom: 0.8rem;
    color: #546e7a;
    line-height: 1.7;
}

.services-cta {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.about-intro {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 5%;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.values-section {
    padding: 5rem 5%;
    background-color: #fafbfc;
}

.values-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

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

.value-card p {
    color: #546e7a;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 5%;
}

.team-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    color: #546e7a;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-role {
    color: #1e88e5;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #546e7a;
    line-height: 1.7;
}

.certifications-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.certifications-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cert-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.cert-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e88e5;
}

.cert-item p {
    color: #546e7a;
    line-height: 1.7;
}

.about-cta {
    padding: 4rem 5%;
    text-align: center;
    background-color: #1e88e5;
    color: #ffffff;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 5%;
}

.contact-info h2,
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e88e5;
}

.contact-block p {
    color: #546e7a;
    line-height: 1.8;
}

.contact-block a {
    color: #1e88e5;
    text-decoration: underline;
}

.map-placeholder {
    position: relative;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.map-text {
    margin-top: 1.5rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-extra {
    padding: 3rem 5%;
    background-color: #f8f9fa;
}

.contact-extra h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-extra p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-container {
    padding: 5rem 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e88e5;
}

.step-item p {
    color: #546e7a;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.thanks-contact {
    padding: 2rem;
    background-color: #e3f2fd;
    border-radius: 8px;
}

.thanks-contact p {
    color: #546e7a;
    margin: 0;
}

.thanks-contact a {
    color: #1e88e5;
    font-weight: 600;
    text-decoration: underline;
}

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

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

.legal-date {
    color: #546e7a;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e88e5;
}

.legal-container p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: #1e88e5;
    text-decoration: underline;
}

.gdpr-principles,
.rights-grid {
    margin: 2rem 0;
}

.right-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.right-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1e88e5;
}

.right-item p {
    margin-bottom: 0;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
}

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .hero-content {
        padding: 4rem 5% 4rem 8%;
    }

    .trust-bar {
        flex-direction: row;
        justify-content: space-around;
    }

    .intro-offset {
        flex-direction: row;
        align-items: center;
    }

    .difference-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .diff-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .service-detail.reverse {
        flex-direction: row-reverse;
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

    .about-intro {
        flex-direction: row;
        align-items: center;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }

    .contact-container {
        flex-direction: row;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .final-cta-split {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .nav-right {
        gap: 3rem;
    }

    .difference-grid {
        flex-wrap: nowrap;
    }

    .diff-item {
        flex: 1;
    }

    .value-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .team-member {
        flex: 0 0 calc(25% - 1.5rem);
    }
}