* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1f2a44;
    --navy-2: #2f477a;
    --text: #374151;
    --muted: #6b7280;
    --white: #ffffff;
    --bg-soft: #f6f8fb;
    --bg-soft-2: #eef2f7;
    --border: rgba(31, 42, 68, 0.08);
    --shadow-soft: 0 14px 40px rgba(31, 42, 68, 0.08);
    --shadow-strong: 0 20px 50px rgba(31, 42, 68, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: var(--white);
    color: var(--navy);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
}

ul {
    padding-left: 22px;
    margin-bottom: 24px;
}

li {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.85;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 80px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(31, 42, 68, 0.07);
    box-shadow: 0 8px 28px rgba(31, 42, 68, 0.05);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.logo {
    height: 92px;
    width: auto;
    display: block;
}

/* NAVIGATION */
nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav > a,
.dropdown-toggle {
    position: relative;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

nav > a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--navy-2));
    transition: width 0.25s ease;
}

nav > a:hover,
.dropdown-toggle:hover {
    color: #000000;
}

nav > a:hover::after,
.dropdown-toggle:hover::after {
    width: 100%;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 34px;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(31, 42, 68, 0.14);
    border: 1px solid rgba(31, 42, 68, 0.06);
    padding: 10px 0;
    display: none;
    z-index: 1100;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 13px 18px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.25s ease, padding-left 0.25s ease;
}

.dropdown-menu a:hover {
    background: #f5f7fb;
    padding-left: 22px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* BREADCRUMB */
.breadcrumb {
    padding: 145px 80px 0;
    background: var(--white);
}

.breadcrumb-wrap {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--muted);
}

.breadcrumb-wrap a {
    color: var(--navy);
    font-weight: 500;
    transition: color 0.25s ease;
}

.breadcrumb-wrap a:hover {
    color: #000000;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #9ca3af;
}

.breadcrumb-current {
    color: var(--muted);
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 720px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0a1428;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 44px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
}

.hero-content h1 {
    color: #ffffff;
    font-size: 66px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.8;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}


/* SECTION BASICS */
.about,
.services,
.page-content,
.post-list-page,
.practice-page,
.contact-page {
    position: relative;
}

.about {
    padding: 130px 80px;
    background: var(--white);
}

.about-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: var(--navy);
    letter-spacing: -0.4px;
}

.about p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
}

/* HOMEPAGE SERVICES */
.services {
    padding: 130px 80px;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef2f7 100%);
    text-align: center;
}

.services h2 {
    font-size: 44px;
    margin-bottom: 50px;
    color: var(--navy);
    letter-spacing: -0.4px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.98);
    padding: 42px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 20px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 42, 68, 0.06);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

/* PRACTICE PAGE */
.practice-page {
    padding: 50px 80px 120px;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
}

.practice-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.practice-intro h1 {
    font-size: 52px;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.practice-intro p {
    font-size: 18px;
    color: #5b6475;
}

.practice-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.practice-card {
    color: inherit;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(31, 42, 68, 0.06);
    border-radius: 24px;
    padding: 30px 24px;
    min-height: 255px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    display: block;
}

.practice-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(31, 42, 68, 0.14);
}

.practice-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.practice-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: var(--white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 12px 24px rgba(31, 42, 68, 0.18);
}

.practice-card h3 {
    font-size: 22px;
    line-height: 1.35;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.practice-card p {
    font-size: 15px;
    color: #5b6475;
    margin-bottom: 24px;
}

.practice-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

/* PAGE BANNER */
.page-banner {
    height: 360px;
    background: url('../images/office.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 15, 28, 0.65), rgba(15, 22, 38, 0.38)),
        rgba(0, 0, 0, 0.22);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    margin-top: 35px;
}

.page-banner-content h1 {
    color: var(--white);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

/* INNER PAGE CONTENT */
.page-content {
    padding: 78px 80px 120px;
    background: var(--white);
}

.text-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.text-wrapper h3 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 20px;
}

.text-wrapper p {
    font-size: 18px;
    line-height: 1.95;
    color: var(--text);
    margin-bottom: 24px;
    text-align: left;
}

/* POST LIST PAGE */
.post-list-page {
    padding: 70px 80px 120px;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
}

.post-list-page h1 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 60px;
    color: var(--navy);
    letter-spacing: -0.4px;
}

.post-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.post-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 38px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 42, 68, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.post-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--navy);
}

.post-card p {
    font-size: 16px;
    color: #4b5563;
}

/* CONTACT PAGE */
.contact-page {
    padding: 70px 80px 120px;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
}

.contact-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

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

.contact-form-box {
    order: 2;
}

.contact-form-box,
.contact-info-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 42px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 42, 68, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-form-box:hover,
.contact-info-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.contact-form-box h2,
.contact-info-box h2 {
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d9dee8;
    border-radius: 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--navy);
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #8b94a6;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--navy-2);
    box-shadow: 0 0 0 5px rgba(47, 71, 122, 0.10);
    transform: translateY(-1px);
}

.contact-form-box textarea {
    min-height: 180px;
    resize: vertical;
}

.kvkk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.75;
    color: #4b5563;
    margin-top: 4px;
}

.kvkk input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
    accent-color: var(--navy);
}

.contact-form-box button {
    margin-top: 4px;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 24px rgba(31, 42, 68, 0.18);
}

.contact-form-box button:hover {
    transform: translateY(-2px);
    opacity: 0.98;
    box-shadow: 0 16px 30px rgba(31, 42, 68, 0.22);
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box p {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 22px;
    line-height: 1.95;
}

.contact-info-box strong {
    color: var(--navy);
    display: inline-block;
    margin-bottom: 4px;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #0f1117 0%, #0a0c10 100%);
    color: var(--white);
    padding: 72px 80px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.footer-box h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-box p,
.footer-box a {
    font-size: 15px;
    line-height: 1.9;
    color: #d1d5db;
}

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

.footer-note {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-note p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.8;
}

/* FAALİYET SAYFASI VIDEO HEADER */

.practice-intro-video {
    position: relative;
    height: 380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a1428;
    border-radius: 18px;
    margin-bottom: 40px;
}

.practice-intro {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 420px;
}

.practice-intro-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.practice-intro-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.practice-intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.practice-intro-content h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
}

.practice-intro-content p {
    color: #ffffff;
    font-size: 18px;
    opacity: 0.95;
}
/* VIDEO BAND */

.video-band {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px auto;
    max-width: 1200px;
}

.video-band .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.video-band .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.55);
}

.video-band .video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.video-band .video-content h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.video-band .video-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.video-band .video-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #ffffff;
    color: #0a1428;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.video-band .video-btn:hover {
    background: #0a1428;
    color: #fff;
}
/* SERVICES PREMIUM */

.services {
    padding: 130px 80px;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef2f7 100%);
    text-align: center;
}

.services h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--navy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
}

.service-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f2f6fb 100%);
    padding: 40px 34px;
    border-radius: 28px;
    text-align: left;
    border: 1px solid rgba(31, 42, 68, 0.08);
    box-shadow: 0 22px 48px rgba(31, 42, 68, 0.14);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    pointer-events: none;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.service-card p {
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.85;
    color: #5b6475;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 60px rgba(31, 42, 68, 0.18);
    border-color: rgba(31, 42, 68, 0.14);
}

.service-card:hover::after {
    transform: translateX(120%);
}

.services-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}
.services-btn-wrapper {
    text-align: center;
    margin-top: 90px;
}
.services-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover::after {
    opacity: 1;
}
.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px rgba(31, 42, 68, 0.18);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}
/* RESPONSIVE */
@media (max-width: 1200px) {
    .practice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .header {
        padding: 16px 34px;
    }

    .logo {
        height: 76px;
    }

    nav {
        gap: 16px;
    }

    nav > a,
    .dropdown-toggle {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-content {
        padding: 50px 60px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-info-box,
    .contact-form-box {
        order: unset;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 16px;
    }

    .container {
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        height: 72px;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 10px 18px;
    }

    nav > a,
    .dropdown-toggle {
        font-size: 13px;
    }

    .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
        min-width: 190px;
    }

    .hero {
        height: auto;
        min-height: 78vh;
        padding: 170px 16px 40px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 32px 20px;
        border-radius: 18px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .breadcrumb,
    .about,
    .services,
    .page-content,
    .post-list-page,
    .practice-page,
    .contact-page,
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .breadcrumb {
        padding-top: 155px;
    }

    .page-banner {
        height: 250px;
    }

    .page-banner-content h1 {
        font-size: 34px;
    }

    .about,
    .services,
    .page-content,
    .post-list-page,
    .practice-page,
    .contact-page {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .about h2,
    .services h2,
    .post-list-page h1,
    .practice-intro h1 {
        font-size: 30px;
    }

    .about p,
    .practice-intro p,
    .text-wrapper p {
        font-size: 16px;
    }

    .grid,
    .practice-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .practice-card,
    .post-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .practice-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 16px;
        margin-bottom: 22px;
    }

    .practice-card h3 {
        font-size: 20px;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 28px 22px;
    }

    .contact-form-box h2,
    .contact-info-box h2 {
        font-size: 26px;
    }

    .footer-grid {
        gap: 28px;
    }
}

@media (max-width: 420px) {
    .header {
        padding: 12px 14px;
    }

    .logo {
        height: 56px;
    }

    nav {
        gap: 10px 12px;
    }

    nav > a,
    .dropdown-toggle {
        font-size: 12px;
    }

    .hero {
        padding: 160px 12px 30px;
        min-height: 72vh;
    }

    .hero-content {
        padding: 24px 16px;
    }

    .hero h1 {
        font-size: 24px;
    }

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

    .breadcrumb {
        padding-top: 145px;
    }

    .page-banner {
        height: 220px;
    }

    .page-banner-content h1 {
        font-size: 28px;
    }

    .practice-intro h1,
    .services h2,
    .about h2,
    .post-list-page h1 {
        font-size: 26px;
    }

    .about p,
    .practice-intro p,
    .text-wrapper p,
    li,
    .contact-info-box p {
        font-size: 15px;
    }

    .card,
    .practice-card,
    .post-card,
    .contact-form-box,
    .contact-info-box {
        padding: 22px 18px;
    }

    .site-footer {
        padding: 56px 20px 24px;
    }

    .footer-box h3 {
        font-size: 20px;
    }

    .footer-box p,
    .footer-box a {
        font-size: 14px;
    }
}
