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

:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #f97316;
    --accent-color-soft: #fb923c;
    --accent-contrast: #fff7ed;
    --gradient-1: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-2: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-3: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(2, 6, 23, 0.95) 100%);
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --bg-paper: #f5f0e9;
    --bg-white: #ffffff;
    --border-color: rgba(15, 23, 42, 0.08);
    --shadow: 0 18px 45px -30px rgba(15, 23, 42, 0.45);
    --shadow-lg: 0 30px 60px -40px rgba(15, 23, 42, 0.45);
    --shadow-xl: 0 35px 70px -40px rgba(15, 23, 42, 0.55);
    --glow: 0 0 35px rgba(249, 115, 22, 0.28);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-paper);
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.55), transparent 62%),
        radial-gradient(circle at 85% 12%, rgba(249, 162, 76, 0.18), transparent 55%),
        radial-gradient(circle at 50% 90%, rgba(15, 23, 42, 0.05), transparent 65%);
    background-attachment: fixed;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 240, 233, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 36px -28px rgba(15, 23, 42, 0.45);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', 'Inter', serif;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 22% 18%, rgba(249, 146, 76, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 78% 12%, rgba(14, 165, 233, 0.18) 0%, transparent 52%),
        var(--gradient-hero);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f8fafc;
    text-align: center;
    overflow: hidden;
    padding: 0 5vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 18% 32%, rgba(249, 146, 76, 0.3) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.18) 0%, transparent 50%);
    mix-blend-mode: screen;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.6) 100%);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    text-align: left;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
    text-shadow: none;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0;
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 640px;
    margin-left: 0;
    margin-right: 0;
    color: rgba(248, 250, 252, 0.85);
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--accent-color);
    color: var(--accent-contrast);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 48px -22px rgba(249, 115, 22, 0.6);
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px -20px rgba(249, 115, 22, 0.7);
    background: var(--accent-color-soft);
    color: #0f172a;
}

.cta-button:active {
    transform: translateY(-1px) scale(1.01);
}

@media (min-width: 1024px) {
    .hero {
        justify-content: flex-start;
    }

    .hero-content {
        margin-left: 5vw;
        margin-right: auto;
    }

    .hero-content::before {
        content: '';
        position: absolute;
        left: -32px;
        top: 16px;
        width: 3px;
        height: 72px;
        background: linear-gradient(180deg, var(--accent-color), transparent);
        border-radius: 999px;
        opacity: 0.8;
    }
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', 'Inter', serif;
    font-size: 3.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.about {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 240, 233, 0.95) 100%);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -140px;
    left: -120px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(249, 146, 76, 0.22) 0%, transparent 70%);
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 72%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.08rem;
    color: rgba(15, 23, 42, 0.78);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.feature-item {
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 38px -28px rgba(15, 23, 42, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(249, 115, 22, 0.16), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.feature-icon img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', 'Inter', serif;
}

.feature-item p {
    color: rgba(15, 23, 42, 0.65);
    font-size: 1rem;
    line-height: 1.7;
}

.services {
    background: linear-gradient(180deg, rgba(245, 240, 233, 0.92) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    opacity: 0.85;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.78);
    padding: 2.75rem 2.5rem;
    border-radius: 26px;
    box-shadow: 0 22px 48px -32px rgba(15, 23, 42, 0.55);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

#website-dev-card {
    cursor: pointer;
}

#website-dev-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(249, 115, 22, 0.3);
}

.service-read-more {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#website-dev-card:hover .service-read-more {
    transform: translateY(3px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(249, 146, 76, 0.15), transparent 70%);
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow);
    border-color: rgba(249, 115, 22, 0.3);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent-color);
}

.service-icon img {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', 'Inter', serif;
}

.service-card p {
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.7;
}

.service-card.ai-service {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
    border: 2px solid rgba(147, 51, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card.ai-service::before {
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.25), rgba(249, 115, 22, 0.15) 70%);
}

.service-card.ai-service::after {
    content: '💡 NYTT';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #9333ea 0%, #f97316 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

.service-card.ai-service:hover {
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(147, 51, 234, 0.3);
}

.service-card.ai-service .service-icon {
    background: linear-gradient(135deg, #9333ea 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(147, 51, 234, 0.3));
}

/* Articles Section Styles */
.articles-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(249, 115, 22, 0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.articles-title {
    font-family: 'Playfair Display', 'Inter', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.article-card:hover::before {
    transform: scaleX(1);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -25px rgba(15, 23, 42, 0.55);
    border-color: rgba(249, 115, 22, 0.25);
}

.article-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.article-icon img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.article-card:hover .article-icon {
    transform: scale(1.1) rotate(5deg);
}

.article-card h4 {
    font-family: 'Playfair Display', 'Inter', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.article-card p {
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.article-card:hover .read-more {
    transform: translateX(5px);
}

.contact {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 240, 233, 0.92) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.11) 0%, transparent 72%);
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -18%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(249, 146, 76, 0.13) 0%, transparent 70%);
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', 'Inter', serif;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: var(--text-dark);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color-soft);
}

.contact-form {
    background: rgba(255, 255, 255, 0.82);
    padding: 2.75rem;
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(12px);
}

.contact-form:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.82);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(249, 115, 22, 0.55);
    background: #fffaf3;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 4px;
    margin-top: 0.25rem;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.checkbox-group input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.checkbox-group span {
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.6;
}

.submit-button {
    width: 100%;
    padding: 1.1rem;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.28);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45);
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    box-shadow: none;
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: #10b981;
    color: white;
}

.form-message.error {
    background: #ef4444;
    color: white;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-family: 'Playfair Display', 'Inter', serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
    }
}

html {
    scroll-behavior: smooth;
}


