/* ============================================
   EuropeanGrant.EU — Main Stylesheet
   Based on Optive Home Version 2 Design
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --primary: #097c7d;
    --primary-dark: #0C282E;
    --dark: #0a1119;
    --body-text: #4b535d;
    --bg: #f5f5f5;
    --white: #ffffff;
    --border: #e2e2e2;
    --light-grey: #e7e7e7;
    --gradient: linear-gradient(90deg, #097C7D 0%, #0C282E 100%);
    --font-heading: 'Mona Sans', 'Public Sans', sans-serif;
    --font-body: 'Public Sans', sans-serif;
    --radius: 4px;
    --header-height: 100px;
    --transition: all 0.3s ease;
}

/* ---------- Mona Sans Font Face (self-hosted) ---------- */
@font-face {
    font-family: 'Mona Sans';
    src: url('../fonts/MonaSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mona Sans';
    src: url('../fonts/MonaSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mona Sans';
    src: url('../fonts/MonaSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mona Sans';
    src: url('../fonts/MonaSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    opacity: 1;
}

/* Arrow button */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-arrow-icon {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 2px;
    background: var(--white);
    transition: transform 0.4s ease;
    vertical-align: middle;
}

.btn-arrow-icon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: translateY(-50%) rotate(45deg);
}

.btn-arrow:hover .btn-arrow-icon {
    transform: translateX(6px);
}

.btn-arrow:hover {
    background: linear-gradient(90deg, #0C282E 0%, #097C7D 100%);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1.5px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-outline:hover {
    border-color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    width: auto;
    height: 100px;
    z-index: 1000;
    border-radius: 6px;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 15px 24px;
}

/* Transparent state (over hero) */
.site-header.transparent {
    background: transparent;
}

/* Scrolled state (homepage on scroll) */
.site-header.scrolled {
    background: var(--dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* White header state (inner pages) */
.site-header.header-white {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.site-header.header-white .nav-menu > li > a {
    color: var(--dark);
}

.site-header.header-white .nav-menu > li > a.active {
    color: var(--primary);
}

.site-header.header-white .mobile-toggle span {
    background: var(--dark);
}

/* ---------- Logo ---------- */
.header-logo img {
    height: 65px;
    width: auto;
}

/* Active nav link */
.nav-menu > li > a.active {
    color: var(--primary);
}

/* ---------- Navigation ---------- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: var(--transition);
}

.nav-menu > li > a:hover {
    color: inherit;
}

/* Dropdown arrow */
.nav-menu > li > a .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 2px;
    transition: var(--transition);
}

.nav-menu > li:hover > a .arrow {
    transform: none;
}

/* ---------- Dropdown Menu ---------- */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.nav-menu > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 24px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.dropdown li a:hover {
    color: var(--dark);
    background: none;
}

/* ---------- Header CTA Button ---------- */
.header-cta .btn-primary {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
}

.mobile-only-cta {
    display: none;
}

.desktop-cta {
    display: block;
}

/* ---------- Mobile Menu Toggle ---------- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Keep toggle bars white when menu is open (dark slide-out bg) */
.mobile-toggle.active span {
    background: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 25, 0.85) 0%, rgba(9, 124, 125, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    padding-top: 40px;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.85;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title span {
    color: #097c7d;
}

.hero-text {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   INNER PAGE BANNER (for subpages)
   ============================================ */
.page-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: var(--header-height);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 25, 0.88) 0%, rgba(9, 124, 125, 0.35) 100%);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.4);
}

/* ============================================
   CONTACT IMAGE SECTION (inner page top image)
   ============================================ */
.contact-image-section {
    position: relative;
    z-index: 1;
    height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.40);
    z-index: 0;
}

.contact-image-overlay {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 60px;
    background: none;
    text-align: center;
    z-index: 1;
}

/* Fly-in animation for page banner title */
@keyframes flyInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-image-overlay .page-banner-title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 500;
    margin-bottom: 1px;
    color: var(--white);
    animation: flyInFromRight 1.2s ease forwards;
    white-space: nowrap;
}

.contact-image-overlay .breadcrumb {
    justify-content: center;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
}

.contact-image-overlay .breadcrumb a {
    color: var(--white);
}

.contact-image-overlay .breadcrumb .separator {
    color: var(--white);
}

.breadcrumb-single-line {
    white-space: nowrap;
}
@media (max-width: 480px) {
    .breadcrumb-single-line {
        font-size: 12px;
        gap: 5px;
    }
}

/* ============================================
   CONTACT SECTION (form + info card)
   ============================================ */

/* --- Contact page animations --- */
@keyframes flyInFromRightContact {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flyInFromBottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-items .contact-info-item:nth-child(1) {
    opacity: 0;
}

.contact-info-items .contact-info-item:nth-child(2) {
    opacity: 0;
}

.contact-info-items .contact-info-item:nth-child(3) {
    opacity: 0;
}

.contact-info-items .contact-info-item.animate:nth-child(1) {
    animation: flyInFromBottom 2.4s ease 0.9s forwards;
}

.contact-info-items .contact-info-item.animate:nth-child(2) {
    animation: flyInFromBottom 2.4s ease 1.35s forwards;
}

.contact-info-items .contact-info-item.animate:nth-child(3) {
    animation: flyInFromBottom 2.4s ease 1.8s forwards;
}

.contact-section {
    position: relative;
    z-index: 2;
    padding: 100px 0 50px;
    background-color: #f5f5f5;
    margin-top: -50px;
}

.contact-section .container {
    max-width: none;
    padding: 0 20px;
    min-height: 670px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    align-items: stretch;
    border-radius: 6px;
    overflow: hidden;
}

/* --- Left: Contact Info Card --- */
.contact-info-card {
    background: var(--dark);
    border-radius: 0;
    padding: 40px 75px;
    color: var(--white);
    min-height: 650px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-info-title.animate {
    animation: flyInFromRightContact 2.4s ease forwards;
}

.contact-info-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0;
}

.contact-info-desc.animate {
    animation: flyInFromRightContact 2.4s ease 0.45s forwards;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-icon svg {
    stroke: var(--dark);
    fill: none;
    width: 24px;
    height: 24px;
}

.contact-info-item:hover .contact-info-icon {
    background: var(--primary);
}

.contact-info-item:hover .contact-info-icon svg {
    stroke: var(--white);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-info-label {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}

.contact-info-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    transition: color 0.3s ease 1s;
}

.contact-info-item:hover .contact-info-value {
    color: var(--primary);
    transition: color 0.3s ease 0.3s;
}

.contact-info-item:hover .contact-info-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.contact-info-item:hover .contact-info-icon svg {
    stroke: var(--white);
}

/* --- Socials --- */
.contact-socials {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.contact-socials-label {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.contact-socials-icons {
    display: flex;
    gap: 10px;
}

.contact-socials-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-socials-icons a:hover {
    background: var(--white);
    color: var(--dark);
}

.contact-socials-icons a svg {
    transition: all 0.3s ease;
}

.contact-socials-icons a:hover svg[fill="currentColor"] {
    fill: var(--dark);
}

.contact-socials-icons a:hover svg[fill="none"] {
    stroke: var(--dark);
    fill: none;
}

/* --- Right: Contact Form --- */
.contact-form-wrapper {
    padding: 40px;
    background: var(--white);
    opacity: 0;
}

.contact-form-wrapper.animate {
    animation: flyInFromBottom 2.4s ease 0.6s forwards;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text);
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    resize: none;
    overflow-y: auto;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e63c32;
}

.form-error {
    display: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #e63c32;
    margin-top: 6px;
}

.form-error.visible {
    display: block;
}

.btn-submit {
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #0C282E 0%, #097C7D 100%);
}

/* Form status messages */
.form-status {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 24px;
}

.form-status p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
}

.form-status.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-status.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ============================================
   PLACEHOLDER SECTION (for pages in development)
   ============================================ */
.placeholder-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.placeholder-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.placeholder-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text);
    line-height: 1.7;
}

/* ============================================
   LOCATION & MAP SECTION
   ============================================ */
.location-section {
    background: var(--bg);
    padding-top: 80px;
}

.location-header {
    text-align: center;
    margin: 0 auto 50px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 16px;
}

.location-badge-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
}

.location-badge-icon::before,
.location-badge-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary);
    border-radius: 1px;
}

.location-badge-icon::before {
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 0 var(--primary),
        0 0 0 0 var(--primary);
}

.location-badge-icon::after {
    width: 1.5px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.location-badge-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary);
    border-radius: 1px;
}

.location-badge-icon span:first-child {
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.location-badge-icon span:last-child {
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.location-dot {
    display: none;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.location-title .typewriter-char {
    opacity: 0;
    display: inline;
    transition: opacity 0.05s ease;
}

.location-title .typewriter-char.visible {
    opacity: 1;
}

.location-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text);
    line-height: 1.7;
    opacity: 0;
}

.location-desc.animate {
    animation: flyInFromBottom 2.4s ease 0.5s forwards;
}

.location-map {
    width: 100%;
    line-height: 0;
    padding-top: 50px;
}

.location-map iframe {
    width: 100%;
    height: 915px;
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background: #0a1119;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    min-height: 580px;
    padding: 100px 0 0;
    overflow: hidden;
}

/* Tile background */
.footer-tiles {
    position: absolute;
    top: -40px;
    left: 0;
    width: calc(100% + 160px);
    height: calc(100% + 80px);
    display: flex;
    flex-wrap: wrap;
    z-index: 0;
    pointer-events: none;
}

.footer-tiles .tile {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border: 1.2px solid rgba(255,255,255,0.04);
    background: #0a1119;
}

/* Subtle light glow on footer background */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(255,255,255,0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.site-footer .container {
    max-width: none;
    padding: 0 20px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

/* --- Footer Header (logo + desc) --- */
.footer-header {
    display: grid;
    grid-template-columns: 2fr 0.8fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-header-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    height: 75px;
    width: auto;
}

.footer-header-desc {
    grid-column: 2 / -1;
}

.footer-header-desc p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.7;
    text-align: justify;
}

/* --- Top Section --- */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 0.8fr 1.2fr 1.2fr;
    gap: 40px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: auto;
    margin-bottom: 35px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
}

.footer-contact-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-contact-item:hover .footer-contact-text {
    color: var(--primary);
}

/* Footer service list */
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    transition: color 0.3s ease;
    cursor: default;
}

.footer-services li:hover {
    color: var(--primary);
}

.footer-services li a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-services li:hover a {
    color: var(--primary);
}

.footer-service-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--white);
}

/* --- Newsletter --- */
.footer-newsletter-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-newsletter-input:focus {
    border-color: rgba(255,255,255,0.2);
}

.footer-newsletter-btn {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-newsletter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-newsletter-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-newsletter-label {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.footer-newsletter-socials .footer-socials a {
    width: 38px;
    height: 38px;
}

.footer-newsletter-socials .footer-socials a svg {
    width: 21px;
    height: 21px;
}

.footer-newsletter-socials .footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-newsletter-socials .footer-socials a:hover svg[fill="currentColor"] {
    fill: var(--white);
}

.footer-newsletter-socials .footer-socials a:hover svg[fill="none"] {
    stroke: var(--white);
    fill: none;
}

/* --- Middle Section --- */
.footer-middle {
    border-top: none;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: none;
}

.footer-socials a:hover {
    background: var(--white);
    color: var(--dark);
}

.footer-socials a:hover svg[fill="currentColor"] {
    fill: var(--dark);
}

.footer-socials a:hover svg[fill="none"] {
    stroke: var(--dark);
    fill: none;
}

.footer-middle-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
}

/* --- Bottom Section (copyright) --- */
.footer-bottom {
    border-top: none;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-legal a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-legal-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin: 0 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .nav-menu > li > a {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 44px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        order: -1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-header {
        grid-template-columns: 1fr 1fr;
    }

    .footer-header-desc {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(90deg, #097C7D 0%, #0C282E 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 0 40px;
        transition: right 0.35s ease;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }

    .main-nav.open {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu > li > a {
        padding: 14px 24px;
        font-size: 16px;
        border-bottom: none;
        width: 100%;
        color: var(--white) !important;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 100%;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .dropdown.mobile-open {
        display: block;
    }

    .dropdown li a {
        padding: 12px 24px 12px 40px;
        font-size: 14px;
    }

    .header-cta {
        padding: 20px 24px;
        width: 100%;
        border-top: none;
    }

    .header-cta .btn-primary {
        width: 100%;
        text-align: center;
        display: block;
        background: #ffffff !important;
        color: #097C7D !important;
        -webkit-text-fill-color: #097C7D;
    }

    .header-cta .btn-primary:hover {
        background: #ffffff !important;
    }

    .header-cta .btn-primary .btn-arrow-icon {
        background: #097C7D;
    }

    .header-cta .btn-primary .btn-arrow-icon::after {
        border-top-color: #097C7D;
        border-right-color: #097C7D;
    }

    .header-cta .btn-primary:active .btn-arrow-icon,
    .header-cta .btn-primary:hover .btn-arrow-icon {
        transform: translateX(6px);
    }

    .header-cta.mobile-only-cta {
        display: none;
    }

    .header-cta.desktop-cta {
        display: none;
    }

    .mobile-toggle.active span {
        background: #ffffff !important;
    }

    .hero-cards {
        display: none !important;
    }

    .hero-label {
        display: none !important;
    }

    .hero-bottom-bar {
        display: none !important;
    }

    .hero-sep {
        display: none !important;
    }

    .hero-title-center {
        display: inline !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        justify-content: center;
        text-align: center;
    }

    .hero-btn-secondary {
        border: none;
    }

    .home-how-heading {
        white-space: normal;
        font-size: 28px;
    }

    .home-how-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-how-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
    }

    .home-how-num {
        display: none;
    }

    .home-how-line {
        display: none;
    }

    .home-how-card {
        width: 230px;
        height: 230px;
        min-width: 230px;
        padding: 28px 22px;
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

    .home-how-item:nth-child(odd) .home-how-card {
        transform: translateX(120%);
    }

    .home-how-item:nth-child(even) .home-how-card {
        transform: translateX(-120%);
    }

    .home-how-item.circle-visible .home-how-card {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        transition: transform 0.8s ease, opacity 0.5s ease, visibility 0s;
    }

    .site-header .header-inner {
        padding: 0 16px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-logo img {
        height: 65px;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero {
        min-height: 85vh;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        text-align: center;
    }

    .page-banner {
        min-height: 320px;
    }

    .page-banner-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group textarea {
        max-width: 100%;
    }

    .btn-submit {
        display: block;
        width: 100%;
        text-align: center;
    }

    .contact-info-card {
        padding: 40px 30px;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }

    .footer-newsletter-input {
        min-width: 0;
    }

    .footer-newsletter-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .location-title {
        font-size: 26px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
    }

    .contact-socials {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-image-section {
        height: 460px;
    }

    .contact-image-overlay .page-banner-title {
        font-size: 50px;
    }

    .location-map iframe {
        height: 400px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-header-desc {
        grid-column: 1;
    }

    .footer-middle {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .footer-legal {
        flex-direction: column;
        gap: 2px;
    }

    .footer-legal-dot {
        display: none;
    }

    .footer-bottom .footer-copyright {
        order: 2;
    }

    .footer-bottom .footer-legal {
        order: 1;
    }

    .footer-newsletter-socials {
        border-top: none;
    }

    .footer-top {
        margin-bottom: 10px;
        padding-bottom: 0;
    }

    .footer-tile-separator {
        display: none !important;
    }

    .site-footer {
        min-height: auto;
    }
}

/* Small phone */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .page-banner-title {
        font-size: 26px;
    }

    .contact-image-section {
        height: 360px;
    }

    .contact-image-overlay {
        padding: 0 20px;
    }

    .contact-image-overlay .page-banner-title {
        font-size: 30px;
    }

    .container {
        padding: 0 16px;
    }

    .header-logo img {
        height: 65px;
    }

    .home-how-card {
        width: 210px;
        height: 210px;
        min-width: 210px;
        padding: 24px 18px;
    }

    .home-how-card h4 {
        font-size: 15px;
    }

    .home-how-card p {
        font-size: 12px;
        line-height: 17px;
    }
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

/* ===== Layout ===== */
.sd-section {
    padding: 80px 0 100px;
    background: #f5f5f5;
}
.sd-section .container {
    max-width: none;
    margin: 0;
    padding: 0 44px;
}
.sd-grid {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 40px;
}

/* ===== Sidebar ===== */
.sd-sidebar {
    position: sticky;
    top: 60px;
    width: 100%;
}
.sd-sidebar-header {
    background: linear-gradient(90deg, #097C7D 0%, #0C282E 100%);
    padding: 20px 30px;
    border-radius: 6px 6px 0 0;
}
.sd-sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: rgb(253, 251, 253);
    line-height: 28px;
    margin: 0;
}
.sd-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #ffffff;
}
.sd-sidebar-list li {
    padding: 0 24px;
}
.sd-sidebar-list li:not(:last-child) a {
    border-bottom: 1px solid #e8e8e8;
}
.sd-sidebar-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: rgb(10, 17, 25);
    line-height: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.sd-sidebar-list li a:hover {
    color: rgb(10, 17, 25);
}
.sd-sidebar-list li a img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.sd-sidebar-list li a:hover img {
    transform: translateX(4px);
}
.sd-sidebar-list li a svg {
    width: 16px;
    height: 16px;
    color: #0a1119;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.sd-sidebar-list li a:hover svg {
    color: #0a1119;
    transform: translateX(4px);
}

/* ===== Call Widget (sidebar) ===== */
.sd-call-widget {
    margin-top: 24px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background-image: url('../img/sidebar-call-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.sd-call-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 25, 0.60);
    border-radius: 6px;
}
.sd-call-widget-inner {
    position: relative;
    z-index: 1;
    padding: 28px 24px;
}
.sd-call-widget h4 {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    color: rgb(253, 251, 253);
    line-height: 28px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 0.3px solid rgba(253, 251, 253, 0.15);
}
.sd-call-widget p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgb(253, 251, 253);
    line-height: 24px;
    margin: 0;
    text-align: justify;
}

/* ===== Content Area ===== */
.sd-content-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
    position: relative;
}
.sd-content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 70%, transparent 100%);
    z-index: 2;
    transition: none;
    pointer-events: none;
}
.sd-content-image:hover::after {
    animation: sdShine 0.8s ease forwards;
}
@keyframes sdShine {
    0% { left: -100%; }
    100% { left: 130%; }
}
.sd-content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.6s ease;
}
.sd-content-image:hover img {
    transform: scale(1.03);
}
.sd-content-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgb(75, 83, 93);
    line-height: 28px;
    margin-bottom: 40px;
    text-align: justify;
}
.sd-content-text p {
    margin-bottom: 18px;
}
.sd-content-text p:last-child {
    margin-bottom: 0;
}

/* ===== Section Heading ===== */
.sd-section-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: rgb(10, 17, 25);
    line-height: 40px;
    margin-bottom: 14px;
}
.sd-section-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgb(75, 83, 93);
    line-height: 28px;
    margin-bottom: 36px;
    text-align: justify;
}

/* ===== Features + Image Layout ===== */
.sd-features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}
.sd-features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sd-feature-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px 20px;
    transition: all 0.35s ease;
}
.sd-feature-card:hover {
    box-shadow: 0 8px 24px rgba(10, 17, 25, 0.08);
    transform: translateY(-3px);
}
.sd-feature-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
}
.sd-feature-card-icon svg {
    width: 42px;
    height: 42px;
    color: #0a1119;
    stroke-width: 1.2;
}
.sd-feature-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: rgb(10, 17, 25);
    line-height: 22px;
    margin-bottom: 8px;
}
.sd-feature-card p {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgb(75, 83, 93);
    line-height: 20px;
    margin: 0;
}
.sd-features-image {
    border-radius: 8px;
    overflow: hidden;
}
.sd-features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* ===== Separator ===== */
.sd-separator {
    border: none;
    height: 1px;
    background: #e2e2e2;
    margin: 0 0 30px;
}

/* ===== FAQ Accordion ===== */
.sd-faq-section {
    margin-top: 0;
}
.sd-faq-item {
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 18px;
    border: none;
}
.sd-faq-item:first-child {
    border: none;
}
.sd-faq-item:last-child {
    margin-bottom: 0;
}
.sd-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    cursor: pointer;
    transition: all 0.35s ease;
    background: #ffffff;
    border-radius: 6px;
}
.sd-faq-question span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: rgb(10, 17, 25);
    line-height: 28px;
}
.sd-faq-question .sd-faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}
.sd-faq-question .sd-faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: rgb(10, 17, 25);
    stroke-width: 2.8;
    transition: all 0.35s ease;
}
.sd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}
.sd-faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: rgb(253, 251, 253);
    line-height: 26px;
    margin: 0;
    text-align: justify;
}
/* Open state */
.sd-faq-item.active .sd-faq-question {
    background: #0a1119;
    border-radius: 6px 6px 0 0;
}
.sd-faq-item.active .sd-faq-question span {
    color: rgb(253, 251, 253);
}
.sd-faq-item.active .sd-faq-question .sd-faq-icon svg {
    stroke: rgb(253, 251, 253);
}
.sd-faq-item.active .sd-faq-answer {
    max-height: 500px;
    padding: 20px 24px 24px;
    background: #0a1119;
    border-radius: 0 0 6px 6px;
}
.sd-faq-item.active {
    border-bottom-color: transparent;
}

/* ===== SD Scroll Animations ===== */
.sd-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.sd-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.sd-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.sd-fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.sd-delay-1 { transition-delay: 0.1s; }
.sd-delay-2 { transition-delay: 0.2s; }
.sd-delay-3 { transition-delay: 0.3s; }
.sd-delay-4 { transition-delay: 0.4s; }

/* ===== SD Responsive ===== */
@media (max-width: 991px) {
    .sd-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sd-sidebar {
        position: static;
    }
    .sd-call-widget {
        margin-top: 20px;
    }
    .sd-features-row {
        grid-template-columns: 1fr;
    }
    .sd-features-image {
        height: 350px;
    }
    .sd-features-image img {
        height: 350px;
    }
}
@media (max-width: 767px) {
    .sd-section {
        padding: 60px 0 70px;
    }
    .sd-sidebar,
    .sd-call-widget {
        display: none;
    }
    .sd-content-image img {
        height: 260px;
    }
    .sd-features-cards {
        grid-template-columns: 1fr;
    }
    .sd-section-title {
        font-size: 24px;
        line-height: 32px;
    }
}
@media (max-width: 480px) {
    .sd-content-image img {
        height: 200px;
    }
    .sd-section .container {
        padding: 0 20px;
    }
}
