/* 
Theme Name: Astra Child
Description: Custom styles for Accounting Website
Author: Your Agency
Version: 1.0
*/

/* ===========================
   1. CSS VARIABLES (BRAND)
   =========================== */

:root {
    --color-primary: #00509d;
    --color-accent: #2cd2dd;
    --color-secondary: #9b5930;

    --color-dark: #0f172a;
    --color-text: #334155;
    --color-muted: #64748b;
    --color-light: #f8fafc;
    --color-border: #e2e8f0;

    --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===========================
   2. RESET / BASE
   =========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: #fff;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* ===========================
   3. TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 26px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    margin: 0 0 16px;
    color: var(--color-text);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--color-muted); }

/* ===========================
   4. LAYOUT HELPERS
   =========================== */

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

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

.bg-light {
    background: var(--color-light);
}

.bg-primary {
    background: var(--color-primary);
    color: #fff;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary p {
    color: #fff;
}

/* ===========================
   5. BUTTONS (REUSABLE)
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: #003f7a;
}

.btn-accent {
    background: var(--color-accent);
    color: #003c40;
}

.btn-accent:hover {
    background: #22b9c2;
    color: #fff;
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-outline.btn-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline.btn-light:hover {
    border-color: var(--color-primary);
    color: var(--color-accent);
}

/* ===========================
   6. CARDS / BOXES
   =========================== */

.card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.card-hover:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

/* ===========================
   7. GRID UTILITIES
   =========================== */

.grid {
    display: grid;
    gap: 30px;
}

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

/* ===========================
   8. FORMS (CONTACT / LEADS)
   =========================== */

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ===========================
   9. COMMON COMPONENTS
   =========================== */

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    background: rgba(44, 210, 221, 0.15);
    color: var(--color-accent);
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--color-accent);
    margin: 20px 0;
}

/* ===========================
   10. FOOTER OVERRIDES
   =========================== */

.site-footer {
    background: #021f3f;
    color: #cbd5e1;
}

.site-footer a {
    color: #cbd5e1;
}

.site-footer a:hover {
    color: var(--color-accent);
}

/* ===========================
   11. PAGE TEMPLATES
   =========================== */

.site-content > .ast-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

main {
    width: 100%;
}

/* ================================
   ABOUT PAGE
================================ */

.page-intro {
    padding: 120px 0 80px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        #002a55
    );
    color: #fff;
    text-align: center;
}

.page-intro h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #fff;
}

.page-intro p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* About cards */
.about-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Values */
.value-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-accent);
}

/* Approach */
.approach-visual {
    display: grid;
    gap: 20px;
}

.approach-box {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.approach-box span {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 34px;
    color: rgba(0,80,157,0.15);
    font-weight: 700;
}

/* Stats strip */
.about-stats {
    background: var(--color-primary);
    padding: 60px 0;
}

.stats-strip {
    display: flex;
    justify-content: space-between;
    text-align: center;
    color: #fff;
}

.stats-strip strong {
    font-size: 36px;
    display: block;
}

.stats-strip span {
    font-size: 14px;
    opacity: 0.85;
}

/* ================================
   WHO WE ARE – EDITORIAL (NO BOXES)
================================ */

.who-editorial {
    background: #fff;
}

/* Grid */
.who-editorial-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
}

/* Vertical accent line */
.who-editorial-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0,80,157,0.25),
        transparent
    );
}

/* Left statement */
.who-statement h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.who-lead {
    font-size: 18px;
    color: var(--color-muted);
    max-width: 420px;
}

/* Right narrative */
.who-narrative p {
    font-size: 16.5px;
    color: var(--color-text);
    margin-bottom: 18px;
}

/* Inline principles (no boxes) */
.who-principles-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
}

.who-principles-inline span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    padding-left: 16px;
}

.who-principles-inline span::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Image */
.who-image {
    margin-top: 70px;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
}

.who-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: bottom;
}

/* ================================
   AI AUTOMATION – MODERN
================================ */

/* Modern intro */
.page-intro-modern {
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(44,210,221,0.25),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            var(--color-primary),
            #002a55
        );
}

/* Positioning */
.ai-positioning-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.ai-statement h2 {
    font-size: 42px;
    line-height: 1.15;
}

/* Capabilities */
.ai-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ai-capability span {
    font-size: 40px;
    font-weight: 700;
    color: rgba(0,80,157,0.12);
}

.ai-capability h4 {
    margin-bottom: 10px;
}

/* Control */
.ai-control-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-control-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ai-control-points span {
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    padding-left: 16px;
}

.ai-control-points span::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Outcomes */
.ai-outcomes-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.ai-outcomes-grid-modern strong {
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
}

/* ================================
   CONTACT PAGE – MODERN
================================ */

.contact-modern {
    background: #fff;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left info */
.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 16.5px;
    color: var(--color-text);
    margin-bottom: 26px;
}

/* Points */
.contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-points span {
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    padding-left: 16px;
}

.contact-points span::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Contact details */
.contact-details {
    margin-top: 40px;
    display: grid;
    gap: 18px;
}

.contact-details strong {
    display: block;
    font-size: 14px;
    color: var(--color-muted);
}

.contact-details span {
    font-size: 16px;
}

/* Form wrap */
.contact-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form-header {
    margin-bottom: 24px;
}

.contact-form-header h3 {
    margin-bottom: 6px;
}

/* WPForms tweaks (safe) */
.contact-form .wpforms-field {
    margin-bottom: 18px;
}

.contact-form .wpforms-submit {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
}

.contact-form .wpforms-submit:hover {
    background: #003f7a;
}


/* ================================
   CONTACT – ICON-LED DESIGN
================================ */

/* Trust list */
.contact-trust-list {
    display: grid;
    gap: 24px;
    margin: 30px 0 40px;
}

.trust-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    align-items: flex-start;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(44, 210, 221, 0.15);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.trust-item p {
    font-size: 14.5px;
    color: var(--color-muted);
    margin: 0;
}

/* Contact details */
.contact-details-modern {
    display: grid;
    gap: 22px;
}

.contact-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(
        135deg,
        var(--color-accent),
        #17b6c0
    );
    color: #003c40;
    border-radius: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--color-muted);
}

.contact-item span {
    font-size: 16px;
}

.ast-footer-copyright p {
    color: #fff;
}

/* ================================
   SINGLE SERVICE PAGE
================================ */

/* HERO */
.service-hero {
    position: relative;
    padding: 140px 0 120px;
    background-size: cover;
    background-position: center;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 28, 61, 0.85),
        rgba(0, 80, 157, 0.85)
    );
}

.service-hero-content {
    position: relative;
    max-width: 760px;
    color: #fff;
}

.service-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #fff;
}

.service-hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* CONTENT GRID */
.service-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: flex-start;
}

/* Article */
.service-article {
    font-size: 16.5px;
}

.service-article h2,
.service-article h3 {
    margin-top: 40px;
}

/* Sidebar */
.service-sidebar-box,
.service-sidebar-cta {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.service-sidebar-box ul {
    list-style: none;
    padding: 0;
}

.service-sidebar-box li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.service-sidebar-box li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Approach */
.service-approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.service-approach-steps strong {
    display: block;
    font-size: 34px;
    color: var(--color-primary);
}

.service-approach-steps span {
    font-size: 14px;
    color: var(--color-muted);
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.gap-5 {
    gap: 50px;
}

.address-block {
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #d3d3d3;
    border-radius: 16px;
    max-width: 570px;
}

.address-block .flag {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-accent);
}

.address-block .flag .flag-icon {
    width: 70px;
}

.address-block .flag  h3 {
    margin: 0;
}

.address-block ul.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.address-block ul.contact-list li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.address-block ul.contact-list li img {
    width: 44px;
    margin-right: 16px;
}

.address-block ul.contact-list li span {
    display: inline-block;
    width: 70%;
    line-height: 150%;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 18px;
}

.address-block ul.contact-list li:first-of-type {
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-hero-content h1 {
        font-size: 36px;
    }

    .service-approach-steps {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================
   SERVICE SIDEBAR – NEW DESIGN
================================ */

.service-sidebar {
    position: sticky;
    top: 120px;
}

/* Services nav block */
.service-sidebar-nav {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.service-sidebar-nav h4 {
    margin-bottom: 18px;
}

/* List */
.service-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-nav-list li {
    margin-bottom: 10px;
}

.service-nav-list a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 15px;
    color: var(--color-text);
    transition: all 0.25s ease;
}

/* Hover */
.service-nav-list a:hover {
    background: rgba(0,80,157,0.08);
    color: var(--color-primary);
}

/* Active */
.service-nav-list li.active a {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

/* Secondary CTA */
.service-sidebar-cta {
    background: linear-gradient(
        135deg,
        var(--color-primary),
        #002a55
    );
    padding: 30px;
    border-radius: var(--radius-md);
    color: #fff;
}

.service-sidebar-cta h4 {
    color: #fff;
    margin-bottom: 10px;
}

.service-sidebar-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.service-sidebar-cta .btn {
    background: var(--color-accent);
    color: #003c40;
}

/* Responsive */
@media (max-width: 991px) {
    .service-sidebar {
        position: static;
    }
}


/* Subtle hover (desktop only) */
@media (hover: hover) {
    .contact-item:hover .contact-icon {
        transform: translateY(-2px);
        transition: transform 0.2s ease;
    }
}



/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-wrap {
        padding: 30px;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .ai-positioning-grid,
    .ai-control-grid,
    .ai-capabilities-grid,
    .ai-outcomes-grid-modern {
        grid-template-columns: 1fr;
    }

    .ai-statement h2 {
        font-size: 34px;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .stats-strip {
        flex-direction: column;
        gap: 30px;
    }

    .page-intro h1 {
        font-size: 36px;
    }
      .who-editorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-editorial-grid::after {
        display: none;
    }

    .who-statement h2 {
        font-size: 34px;
    }
}

/* ================================
   OFFSHORE TEAM – MODERN
================================ */

.offshore-modern {
    background:
        radial-gradient(
            circle at top left,
            rgba(44,210,221,0.25),
            transparent 40%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(0,80,157,0.2),
            transparent 40%
        );
}

/* Glass-style card */
.offshore-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 80px 70px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

/* Eyebrow */
.offshore-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
}

/* Heading */
.offshore-card h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 18px;
}

/* Subtext */
.offshore-subtext {
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto 36px;
    color: var(--color-text);
}

/* Price */
.offshore-price-modern {
    margin-bottom: 34px;
}

.offshore-price-modern span {
    display: block;
    font-size: 14px;
    color: var(--color-muted);
}

.offshore-price-modern strong {
    font-size: 52px;
    font-weight: 700;
    color: var(--color-primary);
}

.offshore-price-modern strong span {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-muted);
}

/* CTA */
.offshore-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Meta */
.offshore-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offshore-meta strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.offshore-meta span {
    font-size: 14px;
    color: var(--color-muted);
}

/* Offshore meta items with icons */
.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.meta-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(44,210,221,0.35),
        rgba(44,210,221,0.15)
    );
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Keep typography clean */
.meta-item strong {
    font-size: 16px;
}

.meta-item span {
    font-size: 14px;
    color: var(--color-muted);
}

/* Optional hover (desktop) */
@media (hover: hover) {
    .meta-item:hover .meta-icon {
        transform: translateY(-3px);
        transition: transform 0.25s ease;
    }
}

/* ================================
   OFFSHORE DATA SECURITY SECTION
================================ */

.offshore-security {
    background:
        linear-gradient(
            180deg,
            rgba(0,80,157,0.04),
            rgba(0,80,157,0.02)
        );
}

/* Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Item */
.security-item {
    text-align: center;
    padding: 50px 20px;
    max-width: 350px;
    margin-inline: auto;
    background: #fff;
    width: 100%;
}

.security-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(44,210,221,0.35),
        rgba(44,210,221,0.15)
    );
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.security-item span {
    font-size: 14px;
    color: var(--color-muted);
}

/* Subtle hover */
@media (hover: hover) {
    .security-item:hover .security-icon {
        transform: translateY(-4px);
        transition: transform 0.25s ease;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .security-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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


/* Responsive */
@media (max-width: 991px) {
    .offshore-card {
        padding: 60px 40px;
    }

    .offshore-card h2 {
        font-size: 34px;
    }

    .offshore-meta {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offshore-cta {
        flex-direction: column;
    }
}



/* ===========================
   12. RESPONSIVE
   =========================== */

@media (max-width: 991px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }

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

@media (max-width: 575px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .address-block .flag .flag-icon {
    width: 45px;
}

.address-block .flag h3 {
    font-size: 22px;
}

.address-block .flag {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.address-block ul.contact-list li img {
    width: 28px;
    margin-right: 18px;
}

.address-block ul.contact-list li span {
    width: 80%;
}
}
