@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0ea5e9;
    --accent: #06b6d4;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    --success: #10b981;
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover { color: var(--primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.logo i {
    font-size: 1.4rem;
    color: var(--primary);
}

.logo:hover { color: var(--dark); }

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--light);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    position: absolute;
}

.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-mobile {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--light);
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile a:hover { color: var(--primary); }

.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 15px;
    color: var(--dark);
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 16px;
    opacity: 0.3;
    z-index: -1;
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 0;
}

.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-body {
    padding: 20px;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 12px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 15px;
}

.service-price .amount {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .period {
    font-size: 12px;
    color: var(--gray);
}

.service-features {
    margin-bottom: 15px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
    padding: 4px 0;
}

.service-features li i {
    color: var(--success);
    font-size: 10px;
}

.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--light);
}

.process-step:last-child::after { display: none; }

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.process-step h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 0;
}

.stats {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-item i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-item p {
    color: var(--gray-light);
    font-size: 12px;
    margin-bottom: 0;
}

.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--light);
}

.testimonial-text {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-info h5 {
    font-size: 13px;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 11px;
    color: var(--gray);
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 50px 0;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--white);
    color: var(--primary);
}

.cta .btn:hover {
    background: var(--dark);
    color: var(--white);
}

.about-intro {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    color: var(--gray);
    font-size: 14px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--light);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0;
}

.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child { border-bottom: none; }

.contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
}

.contact-item-text h5 {
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-item-text p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-secondary);
    font-size: 13px;
    border: 1px solid var(--light);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 0;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.page-hero {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
}

.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--gray-light); }

.policy-content {
    padding: 40px 0;
}

.policy-content h2 {
    margin: 25px 0 12px;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 14px;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 100vh;
}

.error-content,
.thankyou-content {
    max-width: 450px;
}

.error-icon,
.thankyou-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.error-icon {
    background: rgba(239, 68, 68, 0.1);
}

.error-icon i {
    font-size: 2.5rem;
    color: #ef4444;
}

.thankyou-icon {
    background: rgba(16, 185, 129, 0.1);
}

.thankyou-icon i {
    font-size: 2.5rem;
    color: var(--success);
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 10px;
}

.error-content p,
.thankyou-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

footer {
    background: var(--dark);
    padding: 25px 0 15px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
}

.footer-logo i {
    color: var(--secondary);
}

.footer-logo:hover { color: var(--white); }

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 12px;
    color: var(--gray-light);
}

.footer-nav a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    color: var(--gray-light);
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 11px;
    color: var(--gray-light);
}

.footer-links a:hover { color: var(--white); }

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 15px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    color: var(--gray-light);
    font-size: 12px;
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--secondary);
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    padding: 8px 16px;
    font-size: 12px;
}

.service-detail {
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-main h2 {
    margin-bottom: 15px;
}

.service-main p {
    color: var(--gray);
    font-size: 14px;
}

.service-sidebar {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    height: fit-content;
}

.service-sidebar h4 {
    margin-bottom: 15px;
}

.service-sidebar ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-sidebar ul li:last-child { border-bottom: none; }

.service-sidebar ul li i {
    color: var(--success);
    font-size: 10px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.benefit-item h5 {
    font-size: 13px;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }
    
    .hero-content,
    .about-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image { order: -1; }
    
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:nth-child(2)::after { display: none; }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    
    section { padding: 40px 0; }
    
    .hero { padding: 80px 0 40px; }
    
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after { display: none; }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    
    body { font-size: 13px; }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btns {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .container { padding: 0 10px; }
    
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1.1rem; }
    
    .btn { padding: 8px 16px; font-size: 12px; }
    
    .header-inner { padding: 10px 0; }
    
    .logo { font-size: 1rem; }
    .logo i { font-size: 1.2rem; }
}
