:root {
    --primary-color: #0066CC;
    --primary-color-dark: #0052a3;
    --text-color: #1D1D1F;
    --background-color: #FFFFFF;
    --secondary-background: #F5F5F7;
    --border: #D2D2D7;
    --text-light: #86868B;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

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

body {
    -webkit-font-smoothing: antialiased;
    color: var(--text-color);
    line-height: 1.47059;
}

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

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    height: 44px;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

nav h1 {
    font-size: 21px;
    line-height: 1.19048;
    font-weight: 600;
    letter-spacing: .011em;
    margin: 0;
}

nav h1 a {
    text-decoration: none;
    color: var(--text-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.01em;
    color: var(--text-color);
    opacity: 0.8;
    transition: opacity 0.2s ease;
    text-decoration: none;
    display: block;
    padding: 16px 0;
}

nav a:hover {
    opacity: 1;
}

/* Responsive nav adjustments */
@media (max-width: 768px) {
    nav {
        height: auto;
    }

    nav .container {
        flex-direction: column;
        padding: 12px 0;
        gap: 8px;
    }

    nav ul {
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav a {
        padding: 8px 0;
    }
}

/* Main Content Styles */
main {
    margin-top: 44px;
}

section {
    padding: 120px 0;
    margin: 0 auto;
    max-width: 980px;
}

#hero {
    background-color: #FBFBFD;
    text-align: center;
    padding: 140px 0 120px;
    margin-bottom: 0;
}

#hero .container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

#hero h2 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.003em;
    color: #1D1D1F;
    margin-bottom: 0;
}

#hero p {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: .011em;
    color: var(--text-light);
    margin-bottom: 0;
}

/* App Grid Styles */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    margin: 60px auto;
}

.app-card {
    background: #FBFBFD;
    border-radius: 18px;
    padding: 35px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.app-card:hover {
    transform: translateY(-4px);
}

.app-card h3 {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: .009em;
    margin-bottom: 0;
}

.app-card p {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-light);
    margin-bottom: 0;
}

.app-card .app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: block;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 10px;
}

.learn-more-button {
    font-size: 17px;
    line-height: 1.17648;
    font-weight: 400;
    letter-spacing: -.022em;
    min-width: 28px;
    padding: 12px 22px;
    border-radius: 980px;
    background: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* Secondary variant for learn-more-button */
.learn-more-button.secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.learn-more-button.secondary:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Primary variant hover */
.learn-more-button:hover {
    background-color: #0077ED;
    transform: translateY(-1px);
}

.learn-more-button:active {
    transform: translateY(0);
}

.app-store-badge {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.app-store-badge:hover {
    opacity: 0.8;
}

.visit-site-badge {
    display: inline-block;
    padding: 12px 22px;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.17648;
    letter-spacing: -.022em;
    transition: all 0.3s ease;
}

.visit-site-badge:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Support Section Styles */
.contact-button {
    font-size: 17px;
    line-height: 1.17648;
    font-weight: 400;
    letter-spacing: -.022em;
    padding: 12px 22px;
    border-radius: 980px;
    background: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #0077ED;
}

/* Footer Styles */
footer {
    background-color: #F5F5F7;
    padding: 17px 0;
    margin-top: 80px;
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: -.01em;
    color: #86868B;
    text-align: center;
    border-top: 1px solid #D2D2D7;
}

footer p {
    margin-bottom: 7px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 7px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #424245;
    text-decoration: none;
    white-space: nowrap;
    padding: 3px 0;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: #D2D2D7;
    padding: 3px 0;
}

/* Remove social links from footer */
.social-links {
    display: none;
}

@media (max-width: 768px) {
    footer {
        padding: 17px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 7px;
        margin: 0;
    }

    .footer-links span {
        display: none;
    }

    .footer-links a {
        padding: 7px 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        text-align: center;
    }

    section {
        padding: 80px 0;
    }

    #hero {
        padding: 100px 0 80px;
    }

    #hero .container {
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto;
    }

    .app-card {
        padding: 30px;
        gap: 16px;
    }
} 

/* Privacy Policy Styles */
.privacy-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 180px 20px 120px;
}

.privacy-content h1 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 1em;
}

.last-updated {
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -.022em;
    color: var(--text-light);
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: .009em;
    margin-bottom: 0.8em;
}

.policy-section p {
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -.022em;
    margin-bottom: 1em;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
} 

.policy-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-list li {
    margin-bottom: 0.5rem;
} 

/* Back to Top Button */
#scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, background-color 0.3s;
    font-size: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 99;
}

#scroll-top.visible {
    opacity: 1;
}

#scroll-top:hover {
    background-color: #0056b3;
} 

/* Social Links - Removed */
.social-links {
    display: none;
}

/* Adjust spacing for specific sections */
#about {
    background-color: #FBFBFD;
    padding: 100px 0;
}

#process {
    padding-top: 3rem;  /* Reduced top padding */
    padding-bottom: 3rem;  /* Reduced bottom padding */
}

#skills {
    padding-top: 3rem;  /* Reduced top padding */
    padding-bottom: 3rem;  /* Reduced bottom padding */
}

#contact {
    padding-top: 3rem;  /* Reduced top padding */
}

/* Revert other spacing changes */
main {
    margin-top: 44px;
}

section {
    padding: 120px 0;
}

.app-grid {
    gap: 30px;
    padding: 0 20px;
    margin: 60px auto;
}

.app-card {
    padding: 30px;
}

.app-card .app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: block;
}

.app-card h3 {
    margin-bottom: 0.5rem;
} 

/* Section Spacing */
.section-spacer {
    height: 4rem;
}

#about {
    background-color: var(--secondary-background);
    padding: 5rem 0;
    text-align: left;
}

#about h2 {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0 20px;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    text-align: center;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    #about h2 {
        text-align: center;
    }
} 

/* Support Page Styles */
.support-content {
    max-width: 680px;
    margin: 120px auto;
    padding: 0 20px;
}

.contact-section {
    text-align: center;
    margin-top: 2rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.contact-options {
    margin: 3rem 0;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.support-button:hover {
    background-color: var(--primary-color-dark);
    color: white;
    text-decoration: none;
}

.response-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.terms-header {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 0.4em;
    padding-top: 180px;
}

@media (max-width: 768px) {
    .terms-header {
        padding-top: 120px;
    }
}

/* About Me Page Styles */
.about-content-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 180px 20px 120px;
}

.about-content-page h1 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 1em;
}

.about-text p {
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -.022em;
    color: var(--text-color);
    margin-bottom: 1.2em;
}

/* Guide Section Styles */
.guide-section {
    background: #FBFBFD;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: none;
}

.guide-section h3 {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: .009em;
    margin-bottom: 1em;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    padding-left: 2rem;
    position: relative;
}

.step h4 {
    font-size: 19px;
    line-height: 1.21053;
    font-weight: 600;
    letter-spacing: .012em;
    margin-bottom: 0.4em;
}

.step p {
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -.022em;
    color: var(--text-light);
}

.step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.step h4::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .guide-section {
        padding: 1rem;
    }
    
    .step {
        padding-left: 1.5rem;
    }
} 

.section-title {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.009em;
    margin-bottom: 1em;
}

.section-spacer {
    height: 4rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 60px 0;
}

.feature-list li {
    margin-bottom: 30px;
    padding-left: 30px;
}

.feature-list li strong {
    font-size: 19px;
    line-height: 1.21053;
    font-weight: 600;
    letter-spacing: .012em;
    margin-bottom: 0.4em;
}

.feature-list li p {
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -.022em;
    color: var(--text-light);
}

/* Option 1: Hero illustration */
.hero-illustration {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.05));
}

@media (max-width: 768px) {
    .hero-illustration {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }

    #hero .container {
        gap: 20px;
    }
}

input[type="text"],
input[type="url"],
input[type="email"],
select {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

@media (max-width: 768px) {
    .about-content-page {
        padding: 120px 20px 80px;
    }
}

/* Sitemap Styles */
.sitemap-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.sitemap-content h1 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 1.5em;
}

.sitemap-section {
    margin-bottom: 40px;
}

.sitemap-section h2 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: .009em;
    margin-bottom: 1em;
    color: var(--text-color);
}

.sitemap-section ul {
    list-style: none;
    margin-left: 1rem;
}

.sitemap-section li {
    margin-bottom: 0.75rem;
}

.sitemap-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -.022em;
}

.sitemap-section a:hover {
    text-decoration: underline;
}

/* Add general heading size rules */
.about-content-page h1,
.support-content h1,
.privacy-content h1,
.seo-hero h1,
.screenshot-hero h1,
.icon-hero h1 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 1em;
}

/* Shared page content styles */
.page-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 180px 20px 120px;
}

.page-content h1 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 1em;
}

/* Remove these as they're now covered by .page-content */
.about-content-page,
.support-content {
    /* Remove duplicate styles */
}

/* Keep specific support page styles */
.contact-section {
    text-align: center;
    margin-top: 2rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .page-content {
        padding: 120px 20px 80px;
    }
}

/* Page Header Styles */
.page-header {
    background-color: #FBFBFD;
    text-align: center;
    padding: 120px 0 60px;
}

.page-header h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 22px;
    line-height: 1.4;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0 120px;
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.service-features {
    max-width: 800px;
    margin: 0 auto 80px;
}

.service-features h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 16px;
    padding: 16px 24px;
    background-color: #F5F5F7;
    border-radius: 12px;
    font-size: 18px;
}

.portfolio-section {
    margin-bottom: 80px;
}

.portfolio-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background-color: #F5F5F7;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
}

.large-wrapper {
    width: 100%;
}

.large-icon {
    width: 200px;
    height: 200px;
    font-size: 72px;
}

.portfolio-details h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.portfolio-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-color);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
}

.tech-stack li {
    background-color: var(--background-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

.portfolio-button, .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
}

.portfolio-button:hover, .cta-button:hover {
    background-color: var(--primary-color-dark);
}

.contact-cta {
    text-align: center;
    padding: 60px;
    background-color: #F5F5F7;
    border-radius: 24px;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .portfolio-item {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .portfolio-image {
        display: flex;
        justify-content: center;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .feature-list li {
        padding: 12px 16px;
        font-size: 16px;
    }
}

/* Website Design Section */
.image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.placeholder-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 44px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.website-icon {
    background: linear-gradient(135deg, #2851A3 0%, #3A7BD5 100%);
}

.new-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #FF3B30;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-description {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-cta {
    text-align: center;
    margin-top: 40px;
}

#website-design .service-cta {
    text-align: center;
    margin: 60px 0 30px;
}

#website-design .service-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Button Styles */
.learn-more-button,
.contact-button,
.support-button {
    font-size: 17px;
    line-height: 1.17648;
    font-weight: 400;
    letter-spacing: -.022em;
    padding: 12px 22px;
    border-radius: 980px;
    background: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.learn-more-button:hover,
.contact-button:hover,
.support-button:hover {
    background-color: #0077ED;
}

/* Website Design Section Styles */
#website-design {
    padding: 80px 0;
}

.website-showcase {
    margin: 60px 0;
}

.website-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: #F8F8FA;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.website-project-content {
    padding: 50px;
}

.website-project-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1D1D1F;
}

.website-project-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #86868B;
}

.project-features {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.project-features li {
    background-color: #E8F1F8;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
}

.site-link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.2s ease;
}

.site-link-button:hover {
    background-color: var(--primary-color-dark);
}

.website-project-visual {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-mockup {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    background: white;
}

.browser-header {
    display: flex;
    align-items: center;
    background-color: #F2F2F2;
    padding: 12px 16px;
    border-bottom: 1px solid #E6E6E6;
}

.browser-controls {
    display: flex;
    gap: 6px;
    margin-right: 16px;
}

.browser-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.browser-controls span:nth-child(1) {
    background-color: #FF5F57;
}

.browser-controls span:nth-child(2) {
    background-color: #FEBC2E;
}

.browser-controls span:nth-child(3) {
    background-color: #28C840;
}

.browser-address {
    flex-grow: 1;
    font-size: 12px;
    background-color: white;
    border-radius: 4px;
    padding: 6px 12px;
    text-align: center;
    color: #666;
    font-weight: 500;
}

.browser-content {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px;
}

.placeholder-site {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E5799 0%, #207cca 100%);
    color: white;
    font-size: 32px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.site-tagline {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.client-logo {
    max-width: 260px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: var(--primary-color-dark);
}

@media (max-width: 900px) {
    .website-project {
        grid-template-columns: 1fr;
    }
    
    .website-project-content {
        padding: 30px;
    }
    
    .website-project-content h3 {
        font-size: 24px;
    }
    
    .website-project-visual {
        padding: 20px 30px 40px;
    }
}

/* Website Design Page Styles */
.web-design-page .hero-banner {
    background-color: #FBFBFD;
    text-align: center;
    padding: 140px 0 80px;
    margin-bottom: 0;
}

.web-design-page .hero-banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.web-design-page .hero-banner p {
    font-size: 22px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.web-design-page .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-design-page .service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.web-design-page .contact-method svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.web-design-page section {
    padding: 80px 0;
}

.web-design-page .portfolio-item {
    margin-top: 60px;
}

.web-design-page .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.web-design-page .cta-button, 
.web-design-page .submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.web-design-page .cta-button:hover,
.web-design-page .submit-button:hover {
    background-color: var(--primary-color-dark);
}

.web-design-page .pricing-cta {
    text-align: center;
}

.web-design-page .form-group {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .web-design-page .hero-banner {
        padding: 100px 0 60px;
    }
    
    .web-design-page .hero-banner h1 {
        font-size: 32px;
    }
    
    .web-design-page .hero-banner p {
        font-size: 18px;
    }
    
    .web-design-page .portfolio-item {
        grid-template-columns: 1fr;
    }
}

/* Web Design Page Styles */
.web-design-page .services-section {
    padding: 80px 0;
}

.web-design-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.web-design-page .service-card {
    background-color: #FBFBFD;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.web-design-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.web-design-page .service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.web-design-page .service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.web-design-page .process-section {
    padding: 80px 0;
    background-color: #f8f8fa;
}

.web-design-page .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.web-design-page .process-step {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
    position: relative;
}

.web-design-page .step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.web-design-page .process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.web-design-page .process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.web-design-page .portfolio-section {
    padding: 80px 0;
}

.web-design-page .portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
    background-color: #FBFBFD;
    border-radius: 24px;
    overflow: hidden;
}

.web-design-page .portfolio-content {
    padding: 40px;
}

.web-design-page .portfolio-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.web-design-page .portfolio-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.web-design-page .portfolio-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.web-design-page .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.web-design-page .tech-list li {
    background-color: #F0F4FA;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.web-design-page .portfolio-actions {
    margin-top: 20px;
}

.web-design-page .browser-mockup {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.web-design-page .browser-header {
    background-color: #f2f2f2;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.web-design-page .browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.web-design-page .browser-dot:nth-child(1) {
    background-color: #FF5F57;
}

.web-design-page .browser-dot:nth-child(2) {
    background-color: #FEBC2E;
}

.web-design-page .browser-dot:nth-child(3) {
    background-color: #29C941;
}

.web-design-page .browser-address {
    margin-left: 15px;
    background-color: #fff;
    flex-grow: 1;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    color: #777;
}

.web-design-page .browser-body {
    height: 350px;
    overflow: hidden;
}

.web-design-page .website-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.web-design-page .pricing-section {
    padding: 80px 0;
    background-color: #f8f8fa;
}

.web-design-page .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
}

.web-design-page .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.web-design-page .pricing-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.web-design-page .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.web-design-page .featured-card {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.web-design-page .featured-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.web-design-page .pricing-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

.web-design-page .pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.web-design-page .pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.web-design-page .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.web-design-page .pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.web-design-page .pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: var(--text-light);
}

.web-design-page .pricing-features li:last-child {
    border-bottom: none;
}

.web-design-page .contact-section {
    padding: 80px 0;
}

.web-design-page .contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 60px;
}

.web-design-page .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.web-design-page .contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.web-design-page .contact-method h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.web-design-page .contact-method p,
.web-design-page .contact-method a {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: none;
}

.web-design-page .contact-method a:hover {
    color: var(--primary-color);
}

.web-design-page .contact-form-wrapper {
    background-color: #f8f8fa;
    border-radius: 16px;
    padding: 40px;
}

.web-design-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.web-design-page .form-group input,
.web-design-page .form-group select,
.web-design-page .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.web-design-page .form-group input:focus,
.web-design-page .form-group select:focus,
.web-design-page .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.web-design-page .submit-button {
    width: 100%;
}

.web-design-page .faq-section {
    padding: 80px 0;
    background-color: #f8f8fa;
}

.web-design-page .faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.web-design-page .faq-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.web-design-page .faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.web-design-page .faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .web-design-page .portfolio-item {
        grid-template-columns: 1fr;
    }
    
    .web-design-page .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .web-design-page .services-grid,
    .web-design-page .process-steps,
    .web-design-page .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .web-design-page .featured-card {
        transform: none;
        order: -1;
    }
    
    .web-design-page .featured-card:hover {
        transform: translateY(-5px);
    }
    
    .web-design-page .contact-form-wrapper {
        padding: 25px;
    }
}
