* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-orange: #002e63;
    --primary-teal: #d3d3d3;
    --bg-light: #f5f7f9;
    --text-dark: #333;
    --text-grey: #FFFFFF;
}

body {
    background-color: #fff;
    color: var(--text-dark);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #fff;
    position: relative;
    z-index: 100;
}

.logo {
    color: var(--primary-teal);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.logo a {
    display: flex;
    align-items: baseline;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo span {
    color: var(--primary-orange);
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0;
}

/* Floating Right Buttons */
.floating-menu {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.menu-btn, .help-btn {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border: none;
}

.menu-btn {
    background-color: var(--primary-orange);
}

.help-btn {
    background-color: var(--primary-orange);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: 80px;
}

.dropbtn {
    background-color: #fdfdfd;
    color: var(--primary-orange);
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.dropbtn:hover {
    background-color: #fff;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 12px;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transform-origin: top right;
    animation: dropIn 0.3s ease-out;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dropdown-content a {
    color: var(--text-grey);
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--primary-orange);
    padding-left: 25px;
}

.show { display: block; }

/* Media Queries for Header */
@media (max-width: 900px) {
    .logo { font-size: 32px; }
    .logo span { font-size: 15px; }
    .lang-dropdown { margin-right: 70px; }
    .dropbtn { padding: 8px 15px; font-size: 14px; }
}

@media (max-width: 600px) {
    header { padding: 10px 4%; }
    .logo { font-size: 24px; }
    .logo a { flex-direction: column; align-items: flex-start; gap: 0; }
    .logo span { font-size: 12px; margin-top: -5px; }
    .dropbtn { 
        padding: 6px 12px; 
        font-size: 12px; 
        gap: 6px;
    }
    .lang-dropdown { margin-right: 55px; }
    .dropdown-content { min-width: 150px; }
}

/* Google Translate Overrides */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
    display: none !important;
}
body {
    top: 0 !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}
#google_translate_element {
    display: none !important;
}
.goog-te-gadget {
    font-size: 0 !important;
}
.goog-te-gadget span {
    display: none !important;
}
.goog-te-combo {
    display: none !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1920&q=80') center 20%/cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-box {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    padding: 30px 40px;
    width: 400px;
    position: relative;
    z-index: 10;
    line-height: 1.3;
}

.box-orange {
    background-color: var(--primary-orange);
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    padding-left: 5%;
}

.box-teal {
    background-color: var(--primary-teal);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0 50%);
    padding-right: 5%;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.box-teal span {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.hero-btn {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 3px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 18px 60px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    z-index: 20;
    border-radius: 40px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Search Section */
.search-section {
    padding: 100px 5% 50px;
    text-align: center;
}

.search-section h2 {
    color: var(--primary-teal);
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 800;
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
    background: url('https://www.transparenttextures.com/patterns/white-diamond.png') #f8f9fa;
    padding: 40px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 40px;
    border: 1px solid #ddd;
}

.input-group {
    position: relative;
    flex: 1;
    min-width: 200px;
    border-right: 1px solid #eee;
}

.input-group:last-child {
    border-right: none;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-teal);
}

.search-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-grey);
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background-color: transparent;
    color: var(--primary-teal);
    border: none;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
}

.search-link {
    display: block;
    margin-top: 25px;
    color: var(--primary-teal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

/* Jobs Section */
.jobs-section {
    padding: 30px 5%;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.job-card {
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
}

.job-header {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 15px;
}

.job-body {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--primary-teal);
    font-weight: 700;
}

.job-meta div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-meta i {
    width: 15px;
}

.job-desc {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--text-grey);
    flex-grow: 1;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    align-self: flex-start;
    font-size: 14px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
    color: var(--primary-teal);
    font-weight: 800;
    font-size: 20px;
}

.pagination span {
    color: var(--primary-orange);
}

/* CTA Banner */
.cta-banner {
    display: flex;
    margin: 80px 5%;
}

.cta-left {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 50px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 800;
}

.btn-teal {
    background-color: var(--primary-teal);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    align-self: flex-start;
    font-size: 15px;
}

.cta-right {
    background-color: var(--primary-teal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    flex: 1.5;
}

.cta-right > div {
    background-color: var(--primary-teal);
    color: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 700;
    font-size: 16px;
}

.cta-right i {
    color: var(--primary-orange);
    margin-right: 20px;
    font-size: 20px;
}

/* Steps Section */
.steps-section {
    background-color: var(--bg-light);
    padding: 80px 5%;
    text-align: center;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.steps-section h2 {
    color: var(--primary-teal);
    margin-bottom: 60px;
    font-size: 32px;
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: #fff;
    padding: 50px 40px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.step-icon {
    font-size: 60px;
    color: var(--primary-orange);
    margin-bottom: 30px;
}

.step-card h3 {
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
}

.step-card p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.7;
}

/* Info Banners */
.info-banner {
    display: flex;
    align-items: center;
    padding: 60px 5%;
    background-color: var(--bg-light);
    margin-top: 60px;
}

.info-banner.white-bg {
    background-color: #fff;
    margin-top: 0;
}

.info-banner img {
    width: 50%;
    object-fit: cover;
    height: 400px;
}

.info-content {
    padding: 0 80px;
    width: 50%;
}

.info-content h4 {
    color: var(--primary-orange);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.info-content h2 {
    color: var(--primary-teal);
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
}

/* Partners Slider */
.partners {
    text-align: center;
    padding: 80px 5%;
}

.partners h4 {
    color: var(--primary-orange);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.partners h2 {
    color: var(--primary-teal);
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 800;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-arrow {
    background-color: var(--primary-teal);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background-color: var(--primary-orange);
    transform: scale(1.05);
}

.partner-logos-container {
    overflow: hidden;
    width: 100%;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.partner-logos::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
}

.slide img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.slide i {
    transition: 0.3s;
}

.slide:hover i {
    color: var(--primary-teal) !important;
}

/* Footer */
footer {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.footer-logo span {
    color: var(--primary-teal);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0;
}

.footer-col h4 {
    margin-bottom: 30px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
}

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

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}

.footer-col ul li:hover {
    color: var(--primary-teal);
}

.footer-btn {
    display: block;
    background-color: var(--primary-orange);
    color: #fff;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 13px;
    color: #aaa;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .jobs-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-box { width: 350px; }
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
        text-align: center;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .hero { flex-direction: column; justify-content: center; gap: 20px; }
    .hero-box { width: 100%; clip-path: none; padding: 20px; text-align: center; }
    .jobs-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { flex-direction: column; }
    .steps-grid { grid-template-columns: 1fr; }
    .info-banner { flex-direction: column; }
    .info-banner img, .info-content { width: 100%; height: auto; }
    .info-content { padding: 40px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .jobs-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-right { grid-template-columns: 1fr; }
}

/* Page Headers for subpages */
.page-header {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 120px 5%;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 77, 90, 0.85); /* Teal overlay */
    z-index: 1;
}
.page-header h1, .page-header p {
    position: relative;
    z-index: 2;
}
.about-hero {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
}
.contact-hero {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
}
.apply-hero {
    background-image: url('https://images.unsplash.com/photo-1586281380349-632531db7ed4?auto=format&fit=crop&w=1920&q=80');
}
.agb-hero {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1920&q=80');
}
.complaint-hero {
    background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&w=1920&q=80');
}
.jobs-hero {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80');
}
.page-header h1 {
    font-size: 40px;
    font-weight: 800;
}
.page-content {
    padding: 80px 5%;
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.8;
}
.page-content h2 {
    color: var(--primary-orange);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 800;
}
/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}
.contact-info i {
    color: var(--primary-orange);
    font-size: 24px;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}
.contact-info p {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    background-color: var(--bg-light);
    outline: none;
    transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-orange);
}
.contact-form textarea {
    height: 180px;
    resize: vertical;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* Dropdown Menu */
.floating-menu {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background-color: var(--primary-orange);
    z-index: 1001;
    transition: 0.4s ease-in-out;
    padding: 60px 40px;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
}
.sidebar-menu.active {
    right: 0;
}
.sidebar-triangle {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 150px solid transparent;
    border-bottom: 150px solid transparent;
    border-right: 40px solid var(--primary-orange);
}
.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.sidebar-close:hover {
    background-color: #fff;
    color: var(--primary-orange);
}
.sidebar-menu ul {
    list-style: none;
    margin-top: 20px;
}
.sidebar-menu ul li {
    margin-bottom: 25px;
}
.sidebar-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s;
}
.sidebar-menu ul li a:hover, .sidebar-menu ul li a.active-link {
    color: var(--primary-orange);
}
.sidebar-menu ul.submenu {
    margin-top: 15px;
    padding-left: 0;
}
.sidebar-menu ul.submenu li {
    margin-bottom: 15px;
}
.sidebar-menu ul.submenu li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
@media (max-width: 600px) {
    .sidebar-menu { width: 100%; right: -100%; padding: 40px 20px; }
    .sidebar-triangle { display: none; }
}

/* Apply Page Styles */
.apply-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}
.apply-header {
    background-color: var(--primary-teal);
    color: #fff;
    padding: 20px 30px;
    margin-bottom: 50px;
}
.apply-header h2 {
    font-size: 20px;
    font-weight: 700;
}
.form-section {
    margin-bottom: 40px;
}
.form-section h3 {
    color: var(--primary-teal);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
}
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.justify-end {
    justify-content: flex-end;
}
.form-group {
    flex: 1;
}
.half-width {
    flex: 0 0 calc(50% - 15px);
}
.apply-form input[type="text"], .apply-form input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--primary-orange);
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    color: var(--text-grey);
}
.apply-form input::placeholder {
    color: #999;
}
.file-upload-wrapper {
    text-align: center;
    margin-top: 40px;
}
.file-upload-wrapper label {
    display: block;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 14px;
}
.file-upload-box {
    background-color: #b0b8bc;
    border-radius: 25px;
    display: inline-block;
    padding: 5px;
    padding-right: 15px;
}
.file-upload-box input[type="file"] {
    color: #333;
    font-size: 13px;
    outline: none;
}
.file-upload-box input[type="file"]::file-selector-button {
    background-color: #f0f0f0;
    border: 1px solid #999;
    padding: 5px 15px;
    border-radius: 3px;
    margin-right: 10px;
    font-weight: bold;
    cursor: pointer;
}

/* Checkboxes */
.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    user-select: none;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 35px;
    width: 35px;
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    background-color: transparent;
}
.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary-orange);
}
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 13px;
    top: 8px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.text-orange {
    color: var(--primary-orange);
}

/* Actions */
.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}
.btn-cancel {
    flex: 1;
    background-color: #b0b8bc;
    color: #fff;
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}
.btn-submit {
    flex: 2;
    background-color: var(--primary-teal);
    color: #fff;
    border: none;
    height: 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-submit .btn-arrows {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #fff;
    color: var(--primary-teal);
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
    padding: 0 15px 0 25px;
    font-size: 24px;
}
.btn-submit .btn-arrows i {
    margin-left: -10px;
}

@media (max-width: 600px) {
    .form-row { flex-direction: column; gap: 15px; }
    .half-width { flex: 1; }
    .form-actions { flex-direction: column; }
}

/* Services Banner Section (Global) */
.services-banner-section {
    background-color: var(--primary-teal);
    padding: 80px 0;
}

.section-title-orange-centered {
    color: var(--primary-orange);
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-card-white {
    background: #fff;
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligned left */
    height: 100%;
}

.service-icon {
    font-size: 60px;
    color: var(--primary-orange);
    margin-bottom: 40px;
    align-self: center; /* Icon stays centered */
}

.service-card-white h3 {
    color: var(--primary-orange);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-card-white p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    text-align: left;
}

.service-list {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-top: auto;
}

.service-list li {
    font-size: 16px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    line-height: 1.3;
}

.service-list li i {
    color: var(--primary-orange);
    font-size: 16px;
    margin-top: 3px;
}

@media (max-width: 1100px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .section-title-orange-centered { font-size: 32px; }
    .service-card-white { padding: 40px 30px; }
}

/* Global container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}


/* Advantages Section (Companies) */
.container-small {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantages-section {
    padding: 80px 0;
    background: #fff;
}

.section-title-orange {
    color: var(--primary-orange);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-grey);
    margin-bottom: 60px;
    font-weight: 500;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.adv-item {
    margin-bottom: 10px;
}

.adv-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.adv-header i {
    color: var(--primary-orange);
    font-size: 20px;
}

.adv-header h3 {
    color: var(--primary-teal);
    font-size: 20px;
    font-weight: 700;
}

.adv-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-grey);
    padding-left: 30px;
}

.btn-orange-large {
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(235, 140, 0, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-orange-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 140, 0, 0.4);
}

@media (max-width: 900px) {
    .advantages-grid { grid-template-columns: 1fr; }
    .section-title-orange { font-size: 28px; }
}


