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

body {
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: all 0.3s ease;
}

/* Reset default list styles */
ul,
ol {
  margin: 1em 0;
  padding-left: 2em;
  font-size: 1rem;
  line-height: 1.6;
}

/* Style for unordered lists */
ul {
  list-style-type: disc; /* You can change to circle, square */
}

/* Style for ordered lists */
ol {
  list-style-type: decimal; /* You can change to lower-roman, upper-alpha, etc. */
}

/* Nested list indentation */
ul ul,
ol ol,
ul ol,
ol ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 2em;
}

/* Optional: spacing between list items */
li {
  margin-bottom: 0.4em;
}

/* Optional: align list index numbers nicely for large indexes (10+, 100+) */
ol li {
  padding-left: 0.25em;
  text-indent: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 60px; /* Explicitly set height */
    margin: 0 auto;
    padding: 0 1rem; /* Add horizontal padding */
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%; /* Full height for proper alignment */
}

.nav-left a {
    display: flex;
    align-items: center;
    height: 100%;
}

#hamburger,
.hamburger {
	display: none;
}

.hamburger {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.75rem; /* Add proper padding */
    border-radius: 4px;
    transition: background-color 0.3s ease;
    height: 44px; /* Set explicit height */
    width: 44px; /* Set explicit width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background-color: var(--border-color);
}

.brand-logo {
    max-height: 30px;
    height: auto;
    width: auto;
    display: block;
}

/* For brand logo */ 
#brand-logo-mobile {
    display: none;
}
#brand-logo {
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%; /* Full height for proper alignment */
}

.nav-menu li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1; /* Reset line-height for proper centering */
}

.nav-link:hover {
    color: var(--text-color);
}

/* Right side navigation controls */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    height: 100%; /* Full height for proper alignment */
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.theme-toggle:hover {
    background-color: var(--border-color);
}

/* Important links container */
.imp-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%; /* Full height for proper alignment */
}

.imp-links.hidden {
    display: none !important;
}

.imp-links.visible {
    display: flex !important;
}

/* Search Bar Styles */
.search-bar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 8px 16px;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: all 0.3s ease;
}

.search-bar.hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(-50%) scale(0.9);
}

.search-bar.visible {
    display: flex !important;
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
    font-size: 0.9rem;
    width: 100%;
    padding: 4px 5px;
    border-radius: 10px!important;
}

.search-bar input::placeholder {
    color: var(--text-secondary);
}

.search-bar #clear-search {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    margin-top: 3px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-bar #clear-search:hover {
    color: var(--text-color);
    background-color: var(--border-color);
}

/* Off-screen Menu */
.off-screen-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 2000;
    transition: left 0.3s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.off-screen-menu.active {
    left: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.close-menu:hover {
    background-color: var(--border-color);
}

.menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-links .nav-link {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Tech stacks colors */
/* Web Technologies */
.html, .html5, .html-5  { background: #e34f26; color: white; }
.css, .css3, .css-3 { background: #1572b6; color: white; }
.js, .javascript { background: #f7df1e; color: black; }
.php { background: #777bb4; color: white; }
.mysql { background: #4479a1; color: white; }
.react { background: #61dafb; color: black; }
.nodejs { background: #68a063; color: white; }
.typescript { background: #3178c6; color: white; }
.vue { background: #42b883; color: white; }
.angular { background: #dd0031; color: white; }
.svelte { background: #ff3e00; color: white; }
.nextjs { background: #000000; color: white; }
.nuxtjs { background: #00dc82; color: black; }
.tailwind { background: #38b2ac; color: white; }

/* CSS Frameworks */
.bootstrap, .bootstrap5, .bootstrap-5 { background: #8312FA; color: white; }
.foundation { background: #2199e8; color: white; }
.bulma { background: #00d1b2; color: white; }
.uikit { background: #1fb6ff; color: white; }
.materialize { background: #ee6e73; color: white; }
.tachyons { background: #f6f6f6; color: black; }
.purecss { background: #1f8dd6; color: white; }
.picnic { background: #f5f5f5; color: black; }
.spectre { background: #4b6ea8; color: white; }

/* Backend and Infrastructure */
.python { background: #306998; color: white; }
.django { background: #092e20; color: white; }
.flask { background: #000000; color: white; }
.laravel { background: #ff2d20; color: white; }
.express { background: #303030; color: white; }
.docker { background: #0db7ed; color: white; }
.kubernetes { background: #326ce5; color: white; }

/* Dev Tools and Platforms */
.git { background: #f1502f; color: white; }
.github { background: #24292e; color: white; }
.gitlab { background: #fca121; color: white; }
.bitbucket { background: #0052cc; color: white; }
.vscode { background: #007acc; color: white; }

/* Payments */
.paypal, .paypal-api { background: #00457c; color: white; }
.razorpay, .razorpay-api { background: #0f4c81; color: white; }
.stripe, .stripe-api { background: #635bff; color: white; }
.lemonsqueezy, .lemonsqueezy-api { background: #7b4fde; color: white; }

/* APIs & Services */
.openai, .openai-api, .chatgpt, .chat-gpt { background: #10a37f; color: white; }
.claude, .claude-api, .anthropic, .anthropic-api { background: #DE7356; color: white; }
.deepseek, .deepseek-api { background: #5d5dff; color: white; }
.google-fonts, .google-fonts-api { background: #4285f4; color: white; }
.recaptcha, .google-recaptcha { background: #4285f4; color: white; }
.analytics, .google-analytics { background: #f36c21; color: white; }

/* Media & Assets */
.pixabay, .pixabay-api { background: #008000; color: white; }
.pexels, .pexels-api { background: #05a081; color: white; }
.unsplash, .unsplash-api { background: #000000; color: white; }

/* UI Libraries */
.materialui, .mui { background: #0081cb; color: white; }
.chakraui { background: #319795; color: white; }
.shadcn { background: #000000; color: white; }

/* Default / Fallback */
.default, .other, .unknown { background: #cccccc; color: black; border: 1px solid black; }

/* Hero Section */
.hero-wrapper {
	background-image: 
	linear-gradient(var(--grid) 2px, transparent 2px),  /* horizontal thick */
	linear-gradient(90deg, var(--grid) 2px, transparent 2px),  /* vertical thick */
	linear-gradient(var(--grid) 1px, transparent 1px),  /* horizontal thin */
	linear-gradient(90deg, var(--grid) 1px, transparent 1px);  /* vertical thin */
	
	background-size: 
	80px 80px,  /* thick grid (outer) */
	80px 80px,  
	20px 20px,  /* thin grid (inner, 4 rows/cols in 80px) */
	20px 20px;
	
	background-position: 
	0 0,
	0 0,
	0 0,
	0 0;
}

.hero {
    padding: 8rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
	height: 80vh;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 20px!important;
    margin-bottom: 2rem;
}

.hero-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

.hero-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

/* Section Styles */
.section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.title-header,
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.right-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.right-link:hover {
    text-decoration: underline;
}

/* Featured Works */
.work-content {
	width: 100%;
}

.blog-post,
.work-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.blog-image,
.work-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-content h3,
.work-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.work-tags,
.blog-tags,
.tech-tags {
    margin-top: 0.5rem;
}

.work-tags .tag,
.blog-tags .tag,
.tech-tags .tag {
    display: inline-flex; /* use flex to align items */
    align-items: center;  /* vertical centering */
    gap: 0.2rem;          /* space between text and image */
    font-weight: 500;
}

.tag {
	transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-tags .tag {
    margin: 0.2rem 0.1rem;
	background: var(--accent-color);
	color: white;
    padding: 3px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: normal;
	text-decoration: none;
}

.work-tags .tag {
    margin: 0.2rem 0.1rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
}

.tech-tags .tag {
    margin: 0.4rem 0.3rem;
    padding: 3px 20px 3px 5px;
    border-radius: 20px 20px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
	box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.1);
}

.work-tags .tag img,
.tech-tags .tag img {
    border-radius: 50%;
	background: #ffffff;
	border: 2px solid #ffffff;
}

.work-tags .tag img {
	margin-left: 5px;
    width: 20px;
    height: 20px;
}

.tech-tags .tag img {
	margin-right: 5px;
    width: 35px;
    height: 35px;
}

.blog-date,
.blog-description,
.work-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.blog-date {
	margin: 0.4rem auto;
}

/* Blog and Pages */
.page-section,
.post-section {
	margin-top: 50px;
}
.post-section h1 {
	margin-bottom: 10px;
	font-size: 4em;
	line-height: 1.2em;
}
.post-section img {
	margin: 5px auto;
	width: 100%;
	border-radius: 5px;
}
.post-section p {
	margin: 5px auto;
	font-size: 18px;
}
.post-section .date {
	margin-left: 10px;
	color: var(--text-secondary);
}
.post-section a {
	color: var(--accent-color);
}
.post-section .tags {
	margin-top: 30px;
}
.post-section .tag {
	display: inline-block;
	margin: 5px 3px;
	padding: 5px 10px;
	color: white;
	background: var(--accent-color);
	text-decoration: none;
	border-radius: 5px;
}

/* Info List */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.6;
}

.info-list li:last-child {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border-color);
}

.info-list strong {
  margin-right: 5px;
}

/* Container for testimonial cards */
.swiper {
    width: 100%;
    padding: 2rem 0;
}

.swiper-slide {
    display: flex;
    height: auto !important; /* Important to override Swiper's default */
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.client-info h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-info .client-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.rating i {
	color: #ffc107;
    font-size: 1.2rem;
}
	
.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: auto; /* Push badge down */
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    background: #1dbf73;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-color);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* reCAPTCHA notice styling */
.recaptcha-notice {
    margin: 1rem 0;
    padding: 0.75rem;
    background: var(--border-color);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.recaptcha-notice a {
    color: var(--accent-color);
    text-decoration: none;
}

.recaptcha-notice a:hover {
    text-decoration: underline;
}


/* Loading state for submit button */
.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success/Error message styling */
.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 0.9rem;
    text-align: center;
}

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

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

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.submit-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.submit-btn:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

.submit-btn:disabled {
    background: var(--text-secondary);
    cursor: not-allowed;
    transform: none;
}

/* Legal Links */
.legal-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--text-color);
}

/* Service Cards Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
	overflow: hidden;
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
}

.service-image img {
	width: 100%;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1; /* This makes the description expand to fill available space */
}

.service-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto; /* This pushes the button to the bottom */
}

.service-button:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    #hamburger,
	.hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-container {
        padding: 0 1rem; /* Ensure padding on mobile */
    }

    .search-bar {
        min-width: 250px;
        right: 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
		height: auto;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        order: -1;
    }

	.blog-post,
    .work-item {
        flex-direction: column;
        gap: 1rem;
    }
	
	.post-section h1 {
		font-size: 2em;
		line-height: 1.2em;
	}
	
	.blog-image,
    .work-image {
        width: 100%;
        height: 200px;
    }

    .section {
        padding: 2rem 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .legal-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
	
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        /* Remove equal height on mobile */
        display: block;
    }

    .service-description {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
         padding: 0;
    }

    .nav-container {
        padding: 0 0.75rem; /* Slightly less padding on very small screens */
    }

    .hamburger {
        padding: 0.5rem; /* Slightly smaller padding on very small screens */
        height: 40px;
        width: 40px;
        font-size: 1.3rem;
    }
	
	#brand-logo {
		display: none;
	}
	
	#brand-logo-mobile {
		display: inline-block;
	}

    .search-bar {
        min-width: 200px;
        right: 5px;
    }

    .theme-toggle {
        min-width: 35px;
        min-height: 35px;
        font-size: 1rem;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }
	
	.post-section h1 {
		font-size: 2em;
		line-height: 1.2em;
	}
	
    .service-card {
        padding: 1.5rem;
    }

    .service-image {
        height: 150px;
    }

    .service-title {
        font-size: 1.25rem;
    }
}