/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&display=swap');

:root {
    /* Maritime Colors - Keeping your brand colors */
    --primary-color: #0d253f;
    --secondary-color: #00b4d8;
    --accent-color: #daae51;
    --trust-blue: #1e3a5f;
    --professional-gray: #4a5568;
    --certification-green: #059669;

    /* Text Colors */
    --text-heading: #081120;
    --text-body: #5A5F6A;
    --text-light: #77787b;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #F5F3F4;
    --bg-lighter: #F2F4F7;
    --bg-accent-light: #FFF2E6;

    /* Border Colors */
    --border-light: #f0f0f0;
    --border-medium: #dfdcdc;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);

    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Figtree', sans-serif;
    color: var(--text-heading);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed);
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.sp {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.space10 {
    height: 10px;
}

.space16 {
    height: 16px;
}

.space30 {
    height: 30px;
}

/* Section Headers */
.heading1 .span,
.heading1-w .span {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px;
}

.heading1 .span::before,
.heading1-w .span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: var(--secondary-color);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

/* Buttons */
.btn,
.theme-btn1 {
    display: inline-block;
    padding: 16px 35px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn span,
.theme-btn1 span {
    margin-left: 10px;
    transition: all var(--transition-speed);
}

.btn:hover,
.theme-btn1:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:hover span,
.theme-btn1:hover span {
    margin-left: 15px;
}

.btn-outline,
.theme-btn2 {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover,
.theme-btn2:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-speed);
    padding: 20px 0;
}

header.scrolled,
header.header-area.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.header-elements,
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img,
.site-logo img {
    height: 60px;
    width: auto;
    transition: all var(--transition-speed);
}

header.scrolled .logo img,
header.scrolled .site-logo img {
    height: 45px;
}

.main-menu-ex ul,
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.main-menu-ex a,
.nav-menu a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: all var(--transition-speed);
}

header.scrolled .main-menu-ex a,
header.scrolled .nav-menu a {
    color: var(--text-heading);
}

.main-menu-ex a::after,
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    transition: width var(--transition-speed);
}

.main-menu-ex a:hover::after,
.nav-menu a:hover::after,
.main-menu-ex a.active::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle,
.mobile-nav-icon {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

header.scrolled .mobile-menu-toggle,
header.scrolled .mobile-nav-icon {
    color: var(--text-heading);
}

/* Hero Section */
.hero,
.hero-area1 {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--trust-blue) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.3;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 37, 63, 0.88), rgba(30, 58, 95, 0.82));
    z-index: -1;
}

.hero-content,
.main-heading {
    max-width: 800px;
    z-index: 1;
    text-align: center;
}

.hero h1,
.main-heading h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle,
.main-heading .span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.hero-description,
.main-heading p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.hero-buttons,
.hero1-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Certificates Section */
.certificates-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.certificate-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.certificate-img {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 37, 63, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-speed);
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.certificate-overlay p {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

/* Content Grid Sections */
.content-grid,
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.overlay-anim {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.overlay-anim img {
    transition: transform 0.5s;
}

.overlay-anim:hover img {
    transform: scale(1.05);
}

/* Icon Lists */
.check-list,
.icon-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li,
.icon-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list i,
.icon-list i {
    color: var(--certification-green);
    font-size: 1.2rem;
}

/* Highlight Boxes */
.highlight-box,
.engagement-box {
    background: linear-gradient(135deg, var(--trust-blue), var(--primary-color));
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 25px;
    border-left: 5px solid var(--accent-color);
}

/* Model/Operating Cards */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.model-card {
    background: #fff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
    border-top: 4px solid var(--secondary-color);
    position: relative;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.model-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.model-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.model-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.model-list {
    list-style: none;
    margin-top: 20px;
}

.model-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.model-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Compliance Section */
.compliance-section {
    background: linear-gradient(135deg, var(--primary-color), var(--trust-blue));
    color: #fff;
    padding: 100px 0;
}

.compliance-section h2,
.compliance-section p,
.compliance-section .span {
    color: #fff;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-speed);
}

.compliance-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.compliance-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.compliance-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.compliance-card h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.compliance-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Ethical/Feature Cards */
.ethical-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ethical-card,
.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all var(--transition-speed);
    border-bottom: 3px solid transparent;
}

.ethical-card:hover,
.feature-item:hover {
    background: #fff;
    border-bottom-color: var(--certification-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.ethical-card i {
    font-size: 2.5rem;
    color: var(--certification-green);
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card,
.service1-box {
    background: #fff;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
    text-align: center;
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before,
.service1-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--transition-speed);
}

.service-card:hover::before,
.service1-box:hover::before {
    transform: scaleX(1);
}

.service-card:hover,
.service1-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-bottom-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all var(--transition-speed);
}

.service-card:hover .service-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Verification Steps */
.verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.verification-step {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all var(--transition-speed);
}

.verification-step:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

/* Data Protection */
.data-protection-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--trust-blue), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.icon-large i {
    font-size: 3rem;
    color: var(--accent-color);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.data-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.data-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 100px 0;
}

.contact-container,
.contact1 {
    margin-top: 50px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-info-item,
.contact1-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.contact-info-item:hover,
.contact1-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-info-item i,
.contact1-box .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-form .form-group,
.single-input {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.single-input input,
.single-input textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all var(--transition-speed);
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.single-input input:focus,
.single-input textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.contact-form textarea,
.single-input textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer,
.footer1 {
    background: linear-gradient(135deg, var(--primary-color), #0a1929);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col .logo img {
    height: 260px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-col a {
    opacity: 0.8;
    transition: all var(--transition-speed);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.copyright,
.copyright-area {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Certificate Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    animation: zoomIn 0.3s;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.modal-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .content-grid,
    .about-grid,
    .contact-container,
    .model-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .section,
    .sp {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1,
    .main-heading h1 {
        font-size: 2.5rem;
    }

    .nav-menu,
    .main-menu-ex {
        display: none;
    }

    .mobile-menu-toggle,
    .mobile-nav-icon {
        display: block;
    }

    .hero-buttons,
    .hero1-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn,
    .theme-btn1 {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .content-box {
        padding: 40px 30px;
    }

    .contact-container {
        padding: 40px 30px;
    }

    .modal-content {
        max-width: 95%;
    }

    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .logo img,
    .site-logo img {
        height: 55px;
    }

    header.scrolled .logo img,
    header.scrolled .site-logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero h1,
    .main-heading h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Layout Utilities */
.content-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.content-with-image .image-col {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 300px;
    /* fixed height for consistency */
}

.content-with-image .image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.content-with-image .image-col:hover img {
    transform: scale(1.05);
}

.content-with-image .content-col {
    flex: 1;
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

/* Service Background */
.services-section {
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../img/services-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
    z-index: 1;
}

/* Data Protection Specific */
.data-protection-section .content-box {
    display: flex;
    align-items: stretch;
    gap: 0;
    text-align: left;
    padding: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.data-protection-inner {
    padding: 40px;
    background: white;
    flex: 1;
}

.data-protection-image {
    flex: 1;
    background: #000;
    min-height: 100%;
}

.data-protection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {

    .content-with-image,
    .content-with-image.reverse,
    .data-protection-section .content-box {
        flex-direction: column;
    }

    .content-with-image .image-col,
    .data-protection-image {
        width: 100%;
        height: 250px;
    }

    .data-protection-inner {
        padding: 30px;
    }
}