/* --- Variables & Reset --- */
:root {
    --primary: #FF5A3C;
    --primary-dark: #E6492D;
    --black: #1A1A1A;
    --dark: #111111;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --border: #E0E0E0;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight { color: var(--primary); }
.sparkle { color: var(--primary); margin-left: 5px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
    border: none;
    transition: all 0.3s ease;
}

.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--primary); transform: translateY(-2px); }

.btn-orange { background: var(--primary); color: var(--white); }
.btn-orange:hover { background: var(--black); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--black); border: 1px solid var(--border); }
.btn-white:hover { border-color: var(--black); }

/* --- Navbar --- */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(252, 252, 252, 0.95);
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.navbar.scrolled {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray);
    font-size: 15px;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--black);
}

.mobile-toggle { display: none; font-size: 24px; cursor: pointer; }

/* --- Hero --- */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #FDFDFD 0%, #F5F5F5 100%);
    overflow: hidden;
}

.hero-text-top {
    text-align: center;
    margin-bottom: 40px;
}

.sub-tag {
    color: var(--primary);
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}
.sub-tag::before, .sub-tag::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--primary);
    vertical-align: middle;
    margin: 0 10px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.role { color: var(--black); font-size: 20px; font-weight: 500; margin-bottom: 5px; }
.location { color: var(--gray); font-size: 15px; }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 500px;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.orange-arch {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 400px;
    background: var(--primary);
    border-radius: 225px 225px 0 0;
    z-index: -1;
}

.hero-img {
    height: 480px;
    object-fit: cover;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero-btns {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Floating Elements */
.float-card, .float-tags {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.left-card {
    left: 0;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quote-icon {
    font-size: 40px;
    color: var(--primary);
    line-height: 1;
    font-family: sans-serif
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 600;
}

.avatars { display: flex; }
.avatars img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}
.avatars img:first-child { margin-left: 0; }

.right-tags {
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.tag {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: white;
}
.tag.black { background: var(--black); }
.tag.orange { background: var(--primary); }

.socials {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}
.socials i { font-size: 18px; cursor: pointer; transition: 0.3s; color: var(--black); }
.socials i:hover { color: var(--primary); }

/* --- Marquee --- */
.marquee-strip {
    background: var(--black);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 20px;
}

.marquee-content i { color: var(--primary); margin: 0 15px; font-size: 12px; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Global --- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.sub-title { color: var(--primary); font-weight: 500; display: block; margin-bottom: 10px; position: relative; }
.section-header h2 { font-size: 42px; font-weight: 700; }

/* --- About --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
    padding-left: 30px;
}

.orange-bg-shape {
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 0;
    width: 80%;
    background: var(--primary);
    border-radius: 200px 200px 20px 20px;
    z-index: -1;
}

.about-img img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}

.floating-badge {
    position: absolute;
    top: 60px;
    left: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 3;
}
.floating-badge span { display: block; font-size: 24px; font-weight: 700; color: var(--primary); }
.floating-badge small { font-size: 12px; color: var(--gray); }

.certified-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 3;
}
.certified-badge i { color: var(--black); margin-right: 5px; }

.core-values {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}
.value-item { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.value-item i { color: var(--primary); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.stat-box h3 { font-size: 28px; color: var(--black); margin-bottom: 5px; }
.stat-box p { font-size: 13px; color: var(--gray); }

.contact-min a { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--black); }
.contact-min i { color: var(--primary); }

/* --- Skills --- */
.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.skill-category h3 {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}
.skill-category h3 i { color: var(--primary); }

.skill-bar { margin-bottom: 20px; }
.skill-bar .info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}
.skill-bar .bar {
    width: 100%;
    height: 8px;
    background: #EEE;
    border-radius: 10px;
    overflow: hidden;
}
.skill-bar .bar span {
    display: block;
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

.soft-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.pill {
    padding: 8px 20px;
    background: var(--light-gray);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}
.pill:hover { background: var(--black); color: white; }
.pill:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* --- Services --- */
.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: var(--light-gray);
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    cursor: pointer;
}

.service-head {
    display: flex;
    align-items: center;
    padding: 25px 40px;
}

.service-head .num { font-weight: 600; width: 50px; }
.service-head h3 { flex: 1; font-size: 20px; font-weight: 600; }
.service-head .toggle-icon { transition: 0.3s; }

.service-body {
    padding: 0 40px 40px;
    display: none;
    animation: fadeDown 0.4s ease;
}

/* Active State */
.service-item.active {
    background: var(--black);
    color: white;
}
.service-item.active .service-body { display: block; }
.service-item.active .toggle-icon { color: var(--primary); }

.service-body .tags { margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.service-body .tags span {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}
.service-body p { color: #aaa; margin-bottom: 25px; font-size: 14px; }
.service-img-preview img { width: 100%; border-radius: 15px; height: 300px; object-fit: cover; }

/* --- Resume --- */
.resume-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.col-header { display: flex; align-items: center; gap: 15px; margin-bottom: 40px; }
.icon-circle {
    width: 50px; height: 50px; background: var(--primary);
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}

.timeline { position: relative; border-left: 2px solid #EEE; padding-left: 40px; }
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 4px solid var(--black);
    border-radius: 50%;
}
.timeline-item:hover::before { border-color: var(--primary); }

.timeline-item h4 { font-size: 18px; font-weight: 700; }
.timeline-item p { font-size: 14px; color: var(--black); margin-top: 5px; }
.timeline-item p.small-text { font-size: 13px; color: var(--gray); }
.year-badge {
    background: var(--black);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 20px;
}

/* --- Projects Grid --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.project-card:hover { transform: translateY(-5px); }

.proj-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}
.proj-img img { width: 100%; height: 100%; object-fit: cover; }
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.project-card:hover .overlay { opacity: 1; }
.view-btn {
    width: 50px; height: 50px;
    background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--black);
    cursor: pointer;
    transition: 0.3s;
}
.view-btn:hover {
    background: var(--primary);
    color: white;
}

.proj-info { padding: 20px; }
.proj-info h3 { font-size: 18px; margin-bottom: 5px; }
.proj-info p { font-size: 13px; color: var(--gray); margin-bottom: 15px; }
.proj-tags { display: flex; gap: 10px; }
.proj-tags span {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; color: var(--primary);
    background: rgba(255,90,60,0.1);
    padding: 4px 10px; border-radius: 5px;
}

/* --- Pricing Tabs --- */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 12px 30px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-family: inherit;
    transition: 0.3s;
}
.tab-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.tab-btn.active {
    background: var(--black);
    color: white;
    border-color: var(--black);
}

.pricing-content { display: none; animation: fadeDown 0.4s ease; }
.pricing-content.active { display: block; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.price-card.featured {
    background: var(--black);
    color: white;
    transform: scale(1.05);
}

.price-head {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.price-card.featured .price-head { border-color: rgba(255,255,255,0.15); }

.price-head h3 { font-size: 16px; margin-bottom: 10px; }
.amount { font-size: 32px; font-weight: 700; color: var(--primary); }
.badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 20px;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.features i { color: var(--primary); }

/* --- Certifications --- */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.cert-item {
    background: #FFF;
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
.cert-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(255,90,60,0.15);
}
.cert-item:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.cert-item i { color: var(--primary); font-size: 20px; }

/* --- Contact --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form {
    background: #FFF;
    padding: 10px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 25px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 25px; }
.form-group label { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
    background: #FAFAFA;
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 10px;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    transition: 0.3s;
    color: var(--black);
}
.form-group textarea { height: 120px; resize: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.1);
}

.contact-info-card {
    background: var(--black);
    color: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item { margin-bottom: 30px; }
.info-item h4 { color: var(--primary); margin-bottom: 10px; font-size: 16px; }
.info-item p { font-size: 14px; color: #ccc; }

.social-circles { display: flex; gap: 10px; }
.social-circles a {
    width: 30px; height: 30px;
    background: white; color: var(--black);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}
.social-circles a:hover { background: var(--primary); color: white; }
.social-circles a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* --- Footer --- */
.footer { background: #FAFAFA; padding: 50px 0; margin-top: 50px; text-align: center; }
.footer a { color: var(--gray); font-size: 14px; margin: 0 10px; transition: 0.3s; }
.footer a:hover { color: var(--primary); }

/* --- Animation --- */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
/* --- Responsive (Large laptops + Tablets + Mobile tweaks) --- */
@media (max-width: 1200px) {
    .container { padding: 0 16px; }

    /* Slightly tighten desktop layout while keeping the same design */
    .nav-links { gap: 22px; }

    .hero h1 { font-size: 58px; }
    .hero-visual { height: 480px; }
    .orange-arch { width: 420px; height: 380px; }
    .hero-img { height: 460px; }

    .about-container { gap: 60px; }
    .resume-grid { gap: 50px; }

    .skills-wrapper { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

    .projects-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
    .services-list { max-width: 100%; }

    .price-card { padding: 34px; }
    .contact-wrapper { gap: 40px; }
}

/* Tablet / iPad landscape (another device breakpoint) */
@media (max-width: 1024px) {
    .navbar { padding: 16px 0; }
    .nav-links { gap: 18px; }

    .hero { padding-top: 130px; padding-bottom: 75px; }
    .hero h1 { font-size: 52px; }
    .hero-visual { height: 460px; }
    .orange-arch { width: 380px; height: 340px; }
    .hero-img { height: 440px; }

    .service-head { padding: 22px 30px; }
    .service-body { padding: 0 30px 34px; }
    .service-img-preview img { height: 280px; }

    .timeline { padding-left: 32px; }
    .year-badge { margin-left: 12px; }

    .projects-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
    .pricing-tabs { gap: 12px; }

    .price-card { padding: 30px; }
    .certs-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

    .contact-wrapper { gap: 35px; }
}

/* Mobile-only refinements that don't fight the later 768/576 rules */
@media (max-width: 768px) {
    .logo { font-size: 20px; }
    .logo-icon { width: 30px; height: 30px; font-size: 15px; }

    .marquee-strip { padding: 12px 0; }
    .marquee-content span { font-size: 16px; }

    .section-header { margin-bottom: 45px; }
}

@media (max-width: 992px) {
    /* Hero */
    .hero { padding-top: 120px; padding-bottom: 70px; }
    .hero h1 { font-size: 48px; }
    .hero-visual { height: auto; margin-top: 40px; }

    .orange-arch { width: 380px; height: 340px; }
    .hero-img { height: auto; max-height: 520px; }

    /* Put floating items into normal flow so they don't overlap */
    .float-card, .float-tags {
        position: static;
        transform: none;
        top: auto; left: auto; right: auto;
        margin: 18px auto 0;
        width: 100%;
        max-width: 560px;
    }
    .right-tags { align-items: center; }
    .left-card { max-width: 100%; }

    /* Move hero buttons below content (avoid overlap on short screens) */
    .hero-btns {
        position: static;
        transform: none;
        width: 100%;
        max-width: 560px;
        margin: 18px auto 0;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Layout stacks */
    .about-container { grid-template-columns: 1fr; gap: 50px; }
    .core-values { flex-wrap: wrap; gap: 15px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .resume-grid { grid-template-columns: 1fr; gap: 40px; }
    .timeline { padding-left: 28px; }
    .timeline-item::before { left: -26px; }

    .contact-wrapper { grid-template-columns: 1fr; gap: 35px; }
    .form-row { grid-template-columns: 1fr; gap: 18px; }

    /* Grids/cards */
    .projects-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
    .pricing-tabs { flex-wrap: wrap; }
    .price-card.featured { transform: none; }

    /* Spacing */
    .section { padding: 80px 0; }
    .section-header h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .navbar .nav-links { display: none; }
    .navbar .nav-links.active { 
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(252, 252, 252, 0.98);
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
        gap: 0;
    }
    .navbar .nav-links.active a {
        padding: 12px 20px;
        display: block;
        border-bottom: 1px solid var(--border);
    }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 36px; }
    .orange-arch { width: 90%; }
    .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    /* Higher specificity so it can beat the later 768px rules */
    body .hero h1 { font-size: 32px; line-height: 1.15; }
    body .hero { padding-top: 105px; padding-bottom: 60px; }

    .btn { padding: 10px 18px; font-size: 14px; gap: 8px; }

    .orange-arch { width: 92vw; height: 300px; border-radius: 999px 999px 0 0; }
    .service-head { padding: 18px 20px; }
    .service-body { padding: 0 20px 22px; }

    .proj-info { padding: 16px; }
    .price-card { padding: 24px; }
    .contact-info-card { padding: 26px; }

    .section { padding: 70px 0; }
    .section-header h2 { font-size: 30px; }
}
