/* Style Guide: North Georgia News – Newsprint */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Lora:ital,wght@0,400;0,600;1,400&display=block');

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
}

body {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    line-height: 1.625;
    color: #111111;
    background-color: #F9F9F7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23111111' fill-opacity='0.04' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease-out;
}

/* Header */
.site-header {
    background: #F9F9F7;
    border-bottom: 4px solid #111111;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    color: #111111;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

nav a:hover {
    color: #CC0000;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.nav-cta {
    display: inline-block;
    background: #111111;
    color: #F9F9F7;
    padding: 10px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.nav-cta:hover {
    color: #F9F9F7;
    background: #333333;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: #111111 url('img/Homepage Header.jpg') center center / cover no-repeat;
    color: #F9F9F7;
    min-height: 70vh;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #111111;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 0 40px;
    text-align: left;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 0.95;
    text-transform: uppercase;
    color: #F9F9F7;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #F9F9F7;
}

/* Stats Banner */
.stats-banner {
    background: #F9F9F7;
    padding: 48px 20px;
    border-bottom: 1px solid #111111;
}

.stats-banner .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.stat-item {
    border-right: 1px solid #111111;
    padding: 24px 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Showcase Sections */
.showcase-section {
    padding: 64px 20px;
    background: #F9F9F7;
    border-bottom: 1px solid #111111;
}

.showcase-item {
    max-width: 1200px;
    margin: 0 auto 64px auto;
    padding: 0;
    border-bottom: 1px solid #111111;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.showcase-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.showcase-item:nth-child(even) {
    direction: rtl;
}

.showcase-item:nth-child(even) > * {
    direction: ltr;
}

.showcase-content {
    padding: 48px 40px;
    border-right: 1px solid #111111;
}

.showcase-item:nth-child(even) .showcase-content {
    border-right: none;
    border-left: 1px solid #111111;
}

.showcase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #111111;
}

.showcase-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #111111;
    margin-bottom: 24px;
}

.showcase-stat {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111111;
    padding: 16px 0;
    border-top: 1px solid #111111;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: #E5E5E0;
    border: 1px solid #111111;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #525252;
}

.placeholder-image {
    display: flex;
    width: 100%;
    min-height: 100%;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

/* Portfolio Section */
.portfolio-section {
    background: #F9F9F7;
    padding: 64px 20px;
    border-bottom: 4px solid #111111;
}

.portfolio-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #525252;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.portfolio-item {
    background: #F9F9F7;
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    transition: background 0.2s ease-out;
}

.portfolio-item:hover {
    background: #E5E5E0;
}

.portfolio-item:nth-child(4n) {
    border-right: none;
}

.portfolio-logo {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portfolio-item p {
    font-size: 0.875rem;
    color: #525252;
}

/* Services Section */
.services-section {
    padding: 64px 20px;
    background: #F9F9F7;
    border-bottom: 1px solid #111111;
}

.services-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.service-column {
    padding: 40px 32px;
    border-right: 1px solid #111111;
    text-align: left;
    background: #F9F9F7;
    transition: background 0.2s ease-out;
}

.service-column:hover {
    background: #E5E5E0;
}

.service-column:last-child {
    border-right: none;
}

.service-icon {
    display: none;
}

.service-column h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #111111;
}

.service-column p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #111111;
    margin-bottom: 16px;
}

.service-link {
    font-family: 'Inter', sans-serif;
    color: #111111;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-link:hover {
    color: #CC0000;
}

/* CTA Section */
.cta-section {
    background: #111111;
    color: #F9F9F7;
    padding: 64px 20px;
    text-align: center;
    border-bottom: 4px solid #111111;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #F9F9F7;
}

.cta-section p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
    color: #F9F9F7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease-out;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #F9F9F7;
    color: #111111;
    border: 2px solid #F9F9F7;
}

.btn-primary:hover {
    background: #111111;
    color: #F9F9F7;
    box-shadow: 4px 4px 0 0 #F9F9F7;
    transform: translate(-2px, -2px);
}

.btn-secondary {
    background: transparent;
    color: #F9F9F7;
    border: 2px solid #F9F9F7;
}

.btn-secondary:hover {
    background: #F9F9F7;
    color: #111111;
}

/* Footer */
.site-footer {
    background: #111111;
    color: #F9F9F7;
    padding: 48px 20px 32px;
    border-top: 4px solid #111111;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 16px;
    color: #F9F9F7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #F9F9F7;
}

.footer-column a {
    display: block;
    color: #F9F9F7;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: #E5E5E0;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.footer-bottom {
    border-top: 1px solid #F9F9F7;
    padding-top: 24px;
    text-align: center;
    color: #A3A3A3;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-bottom p {
    color: #A3A3A3;
}

.footer-note {
    margin-top: 8px;
    font-size: 0.75rem;
    color: #A3A3A3;
}

/* Page Header */
.page-header {
    background: #F9F9F7;
    color: #111111;
    padding: 48px 20px 32px;
    text-align: center;
    border-bottom: 4px solid #111111;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #111111;
}

.page-header p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Specs Overview */
.specs-overview {
    background: #F9F9F7;
    padding: 48px 20px;
    border-bottom: 1px solid #111111;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.overview-item {
    padding: 24px 20px;
    border-right: 1px solid #111111;
    background: #F9F9F7;
}

.overview-item:last-child {
    border-right: none;
}

.overview-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #111111;
    margin-bottom: 8px;
    font-weight: 600;
}

.overview-item p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
}

/* Content Section */
.content-section {
    padding: 48px 20px;
    background: #F9F9F7;
    border-bottom: 1px solid #111111;
}

.content-section.gray-bg {
    background: #F9F9F7;
    border-top: 1px solid #E5E5E0;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #111111;
}

.section-intro {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #525252;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Spec Cards */
.spec-card {
    background: #F9F9F7;
    padding: 32px;
    margin-bottom: 32px;
    border: 2px solid #111111;
    border-left: 8px solid #111111;
}

.spec-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 10px 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #111111;
    border-bottom: 1px solid #E5E5E0;
}

.spec-list li:last-child {
    border-bottom: none;
}

/* Tables */
.specs-table,
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 2px solid #111111;
}

.specs-table th,
.pricing-table th {
    background: #111111;
    color: #F9F9F7;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.specs-table td,
.pricing-table td {
    padding: 16px;
    border-bottom: 1px solid #111111;
    font-size: 0.875rem;
    color: #111111;
    font-family: 'Lora', serif;
}

.specs-table tbody tr:last-child td,
.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.specs-table tbody tr:hover,
.pricing-table tbody tr:hover {
    background: #E5E5E0;
}

/* Pricing Tables */
.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #111111;
}

.pricing-card {
    background: #F9F9F7;
    padding: 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.pricing-card:last-child {
    border-right: 1px solid #111111;
}

.pricing-card.featured {
    background: #111111;
    color: #F9F9F7;
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-table td {
    color: #F9F9F7;
}

.pricing-card.featured .pricing-table th {
    background: #F9F9F7;
    color: #111111;
}

.pricing-card.featured .pricing-table td {
    border-color: #525252;
}

.featured-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #111111;
}

.combo-note {
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #111111;
}

.rate-note {
    background: #F9F9F7;
    padding: 24px;
    border: 2px solid #111111;
    border-left: 8px solid #111111;
    margin-top: 32px;
}

.rate-note p {
    font-size: 0.875rem;
    color: #111111;
    margin: 0;
}

/* Guidelines Grid */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 2px solid #111111;
    max-width: 1000px;
    margin: 0 auto;
}

.guideline-card {
    background: #F9F9F7;
    padding: 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.guideline-card:nth-child(3n) {
    border-right: none;
}

.guideline-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.guideline-card ul {
    list-style: none;
}

.guideline-card li {
    padding: 8px 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #111111;
    border-bottom: 1px solid #E5E5E0;
}

.guideline-card li:last-child {
    border-bottom: none;
}

/* Insert Info */
.insert-info {
    max-width: 900px;
    margin: 0 auto;
}

.insert-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    margin-top: 32px;
    border: 2px solid #111111;
}

.insert-spec-item {
    background: #F9F9F7;
    padding: 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.insert-spec-item h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #111111;
}

.insert-spec-item ul {
    list-style: none;
}

.insert-spec-item li {
    padding: 8px 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #525252;
}

/* Download Section */
.download-section {
    text-align: center;
    padding: 40px;
    background: #111111;
    color: #F9F9F7;
    border: 4px solid #111111;
}

.download-section h2 {
    color: #F9F9F7;
    margin-bottom: 16px;
}

.download-section p {
    font-size: 1rem;
    margin-bottom: 24px;
    color: #F9F9F7;
}

/* Contact Box */
.contact-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #F9F9F7;
    padding: 40px;
    border: 2px solid #111111;
}

.contact-box h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #111111;
}

.contact-box p {
    font-size: 1rem;
    color: #525252;
    margin-bottom: 20px;
}

.contact-details {
    text-align: left;
    margin: 24px 0;
    padding: 24px;
    background: #F9F9F7;
    border: 2px solid #111111;
    border-left: 8px solid #111111;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #111111;
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.ad-form {
    background: #F9F9F7;
    border: 4px solid #111111;
}

.form-section {
    padding: 40px;
    border-bottom: 1px solid #111111;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h2 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
    color: #111111;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #111111;
    font-size: 1rem;
    font-family: 'JetBrains Mono', monospace;
    transition: background 0.2s;
    background: transparent;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #F0F0F0;
}

.form-group small {
    font-size: 0.8125rem;
    color: #525252;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    padding: 12px;
    border: 2px solid #111111;
}

.form-group select {
    cursor: pointer;
    background: #F9F9F7;
}

.form-group input[type="file"] {
    border: 2px solid #111111;
    padding: 20px;
    cursor: pointer;
    background: #F9F9F7;
}

.form-group input[type="file"]:hover {
    background: #E5E5E0;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #111111;
}

.checkbox-group a {
    color: #111111;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    font-weight: 600;
}

.checkbox-group a:hover {
    color: #CC0000;
}

/* Price Section */
.price-section {
    background: #F9F9F7;
    border-top: 1px solid #111111;
}

.price-breakdown {
    background: #F9F9F7;
    padding: 24px;
    border: 2px solid #111111;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid #E5E5E0;
    font-family: 'Lora', serif;
    color: #111111;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total-row {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 4px solid #111111;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

/* Payment */
.payment-note {
    text-align: center;
    color: #525252;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

#card-container {
    min-height: 100px;
    margin: 20px 0;
}

.payment-placeholder,
.payment-error {
    background: #F9F9F7;
    border: 2px solid #111111;
    padding: 32px;
    text-align: center;
}

.payment-error {
    border-color: #CC0000;
}

.payment-placeholder p,
.payment-error p {
    margin-bottom: 10px;
    color: #111111;
}

.payment-placeholder a,
.payment-error a {
    color: #111111;
    font-weight: 700;
    text-decoration: underline;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    margin-top: 20px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #525252;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.form-note a {
    color: #111111;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    font-weight: 600;
}

.form-note a:hover {
    color: #CC0000;
}

/* Help Sidebar */
.help-sidebar {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    border: 2px solid #111111;
}

.help-card {
    background: #F9F9F7;
    padding: 28px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.help-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #111111;
}

.help-card p {
    font-size: 0.875rem;
    color: #525252;
    margin-bottom: 16px;
    line-height: 1.6;
}

.help-list,
.tips-list {
    list-style: none;
}

.help-list li,
.tips-list li {
    padding: 8px 0;
    font-size: 0.875rem;
    color: #111111;
}

.tips-list li {
    padding-left: 20px;
    position: relative;
}

.tips-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #111111;
    font-size: 0.5rem;
    top: 0.6em;
}

.help-link {
    color: #111111;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    font-weight: 600;
    font-size: 0.875rem;
}

.help-link:hover {
    color: #CC0000;
}

/* Stats Section */
.stats-section {
    padding: 64px 20px;
    background: #F9F9F7;
    border-bottom: 1px solid #111111;
}

.stats-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #111111;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.stat-card {
    background: #F9F9F7;
    padding: 40px 28px;
    text-align: center;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    transition: background 0.2s ease-out;
}

.stat-card:hover {
    background: #E5E5E0;
}

.stat-card:nth-child(2n) {
    border-right: 1px solid #111111;
}

.stat-icon {
    display: none;
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #111111;
    margin-bottom: 8px;
}

.stat-source {
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Benefits Layout */
.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.benefit-item {
    background: #F9F9F7;
    padding: 40px 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    transition: background 0.2s ease-out;
}

.benefit-item:hover {
    background: #E5E5E0;
}

.benefit-item:nth-child(2n) {
    border-right: 1px solid #111111;
}

.benefit-icon {
    display: none;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.benefit-item p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #111111;
}

/* Comparison Table */
.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #F9F9F7;
    border: 4px solid #111111;
}

.compare-table th {
    background: #111111;
    color: #F9F9F7;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.compare-table td {
    padding: 16px;
    border-bottom: 1px solid #111111;
    font-size: 0.875rem;
    vertical-align: top;
    color: #111111;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: #E5E5E0;
}

.compare-table td:first-child {
    font-weight: 600;
    color: #111111;
}

.compare-table td:nth-child(2) {
    color: #111111;
}

.compare-table td:nth-child(3) {
    color: #525252;
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.story-card {
    background: #F9F9F7;
    padding: 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.story-header {
    margin-bottom: 16px;
}

.story-header h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #111111;
}

.story-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.story-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: #111111;
    font-style: italic;
    margin: 0 0 24px 0;
    padding: 0;
    border: none;
}

.story-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #111111;
}

.result-item {
    text-align: center;
}

.result-item strong {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    color: #111111;
    margin-bottom: 4px;
}

.result-item span {
    font-size: 0.75rem;
    color: #525252;
    font-family: 'Inter', sans-serif;
}

/* Best Practices */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.practice-card {
    background: #F9F9F7;
    padding: 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.practice-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #111111;
}

.practice-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #525252;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    text-align: left;
    color: #111111;
}

.contact-info-section > p {
    font-size: 1rem;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 32px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 32px;
    border: 2px solid #111111;
}

.contact-method {
    background: #F9F9F7;
    padding: 28px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    text-align: center;
}

.contact-method:nth-child(2n) {
    border-right: none;
}

.contact-method:nth-last-child(-n+2) {
    border-bottom: none;
}

.method-icon {
    display: none;
}

.contact-method h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    margin-bottom: 10px;
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-method p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #111111;
    margin-bottom: 6px;
}

.contact-method a {
    color: #111111;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.contact-method a:hover {
    color: #CC0000;
}

.office-hours-box {
    background: #F9F9F7;
    padding: 28px;
    border: 2px solid #111111;
    border-left: 8px solid #111111;
}

.office-hours-box h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.office-hours-box ul {
    list-style: none;
}

.office-hours-box li {
    padding: 10px 0;
    font-size: 0.875rem;
    color: #111111;
    border-bottom: 1px solid #E5E5E0;
}

.office-hours-box li:last-child {
    border-bottom: none;
}

.form-card {
    background: #F9F9F7;
    padding: 40px;
    border: 4px solid #111111;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.form-success {
    margin-top: 20px;
    padding: 16px;
    background: #F9F9F7;
    color: #111111;
    border: 2px solid #111111;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Map Section */
.map-section {
    padding: 64px 20px;
    background: #F9F9F7;
    border-top: 1px solid #111111;
}

.map-section h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #111111;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background: #F9F9F7;
    padding: 48px 40px;
    border: 2px solid #111111;
    text-align: center;
}

.map-info h3 {
    font-size: 1.5rem;
    color: #111111;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.map-info p {
    font-size: 0.875rem;
    color: #111111;
    margin-bottom: 16px;
}

.coverage-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 16px 0;
}

.coverage-list li {
    padding: 6px 0;
    font-size: 0.875rem;
    color: #111111;
}

.coverage-note {
    font-weight: 700;
    color: #111111;
    font-size: 0.875rem;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.faq-item {
    background: #F9F9F7;
    padding: 28px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.faq-item:nth-child(2n) {
    border-right: 1px solid #111111;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-item p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #525252;
}

/* About Page */
.about-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    color: #111111;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #111111;
    font-weight: 500;
    margin-bottom: 24px;
}

.about-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #111111;
}

.about-stat {
    padding: 32px 20px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    background: #F9F9F7;
}

.about-stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.about-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.story-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    text-align: left;
    color: #111111;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 16px;
}

.story-image {
    text-align: center;
}

.story-image .placeholder-image {
    width: 100%;
    min-height: 280px;
    background: #E5E5E0;
    border: 2px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 12px;
}

.image-caption {
    font-size: 0.875rem;
    color: #525252;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.coverage-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder-about {
    background: #F9F9F7;
    padding: 40px;
    border: 2px solid #111111;
    text-align: center;
}

.map-placeholder-about h3 {
    font-size: 1.25rem;
    color: #111111;
    margin-bottom: 16px;
}

.coverage-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #111111;
}

.coverage-info h4 {
    font-size: 1rem;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #111111;
    font-family: 'Inter', sans-serif;
}

.coverage-info p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 16px;
}

.demo-list {
    list-style: none;
    margin-bottom: 20px;
}

.demo-list li {
    padding: 8px 0;
    font-size: 0.875rem;
    color: #525252;
}

.coverage-cta {
    font-weight: 600;
    color: #111111;
    font-size: 1rem;
}

.coverage-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.topic-card {
    background: #F9F9F7;
    padding: 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    text-align: center;
    transition: background 0.2s ease-out;
}

.topic-card:hover {
    background: #E5E5E0;
}

.topic-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.topic-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #111111;
}

.topic-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #525252;
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto;
}

.mission-statement h2 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 32px;
    color: #111111;
}

.mission-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #111111;
    font-style: italic;
    text-align: center;
    padding: 40px;
    background: #F9F9F7;
    border-left: 8px solid #111111;
    border: 2px solid #111111;
    border-left-width: 8px;
    margin: 0 0 20px 0;
}

.mission-attribution {
    text-align: center;
    font-weight: 600;
    color: #525252;
    margin-bottom: 48px;
    font-family: 'Inter', sans-serif;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    border: 2px solid #111111;
}

.value-item {
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    background: #F9F9F7;
}

.value-item h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: #111111;
}

.value-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #525252;
}

.advertise-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.reason-item {
    text-align: center;
    padding: 32px 24px;
    background: #F9F9F7;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.reason-number {
    width: 48px;
    height: 48px;
    background: #111111;
    color: #F9F9F7;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    border: 2px solid #111111;
}

.reason-item h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: #111111;
}

.reason-item p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #525252;
}

/* Resources Page */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.resource-card {
    background: #F9F9F7;
    padding: 32px 28px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    text-align: center;
    transition: background 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.resource-card:hover {
    background: #E5E5E0;
    box-shadow: 4px 4px 0 0 #111111;
    transform: translate(-2px, -2px);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.resource-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #111111;
}

.resource-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 20px;
}

.resource-link {
    display: inline-block;
    color: #111111;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #111111;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease-out;
}

.resource-link:hover {
    background: #111111;
    color: #F9F9F7;
}

.guidelines-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.guideline-section {
    background: #F9F9F7;
    padding: 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.guideline-section h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.guideline-list {
    list-style: none;
}

.guideline-list li {
    padding: 10px 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #525252;
}

.guideline-list strong {
    color: #111111;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #111111;
}

.mistake-card {
    background: #F9F9F7;
    padding: 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    border-left: 8px solid #CC0000;
}

.mistake-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.mistake-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #111111;
}

.mistake-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #525252;
}

.design-services {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.design-services h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: #111111;
}

.services-intro {
    font-size: 1rem;
    color: #525252;
    margin-bottom: 48px;
}

.services-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border: 2px solid #111111;
}

.service-option {
    background: #F9F9F7;
    padding: 40px 32px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

.service-option.featured-service {
    border: 4px solid #111111;
}

.service-option h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #111111;
}

.service-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0 10px 24px;
    font-size: 0.875rem;
    color: #525252;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #111111;
    font-weight: 700;
}

.service-option .btn-primary,
.service-option .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
}

.resources-faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-expanded {
    background: #F9F9F7;
    padding: 32px;
    border: 2px solid #111111;
    border-left: 8px solid #111111;
    margin-bottom: 24px;
}

.faq-item-expanded h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #111111;
}

.faq-item-expanded p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #525252;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    nav {
        flex-direction: column;
        gap: 12px;
        display: none;
    }

    .showcase-item,
    .showcase-item.reverse {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 48px;
        direction: ltr;
    }

    .showcase-content {
        border-right: none;
        border-bottom: 1px solid #111111;
        padding: 32px 24px;
    }

    .showcase-item:nth-child(even) .showcase-content {
        border-left: none;
    }

    .showcase-image {
        min-height: 200px;
    }

    .showcase-content h2 {
        font-size: 1.5rem;
    }

    .showcase-stat {
        font-size: 0.8125rem;
    }

    .portfolio-section h2,
    .services-section h2,
    .cta-section h2 {
        font-size: 1.75rem;
    }

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

    .portfolio-item {
        border-right: none;
    }

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

    .service-column {
        border-right: none;
    }

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

    .pricing-tables {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        border-right: none;
    }

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

    .guideline-card:nth-child(3n) {
        border-right: 1px solid #111111;
    }

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

    .help-sidebar {
        grid-template-columns: 1fr;
    }

    .help-card {
        border-right: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-method {
        border-right: none;
        border-bottom: 1px solid #111111;
    }

    .contact-method:nth-last-child(-n+2) {
        border-bottom: 1px solid #111111;
    }

    .contact-method:last-child {
        border-bottom: none;
    }

    .stats-grid,
    .stats-banner .container {
        grid-template-columns: 1fr;
    }

    .stat-item,
    .stat-card {
        border-right: none;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        border-right: none;
    }

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

    .faq-item {
        border-right: none;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

    .coverage-section {
        grid-template-columns: 1fr;
    }

    .coverage-topics {
        grid-template-columns: 1fr;
    }

    .topic-card {
        border-right: none;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .value-item {
        border-right: none;
    }

    .advertise-reasons {
        grid-template-columns: 1fr;
    }

    .reason-item {
        border-right: none;
    }

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

    .about-stat {
        border-right: none;
    }

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

    .resource-card {
        border-right: none;
    }

    .guidelines-layout {
        grid-template-columns: 1fr;
    }

    .guideline-section {
        border-right: none;
    }

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

    .mistake-card {
        border-right: none;
    }

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

    .service-option {
        border-right: none;
    }

    .compare-table {
        font-size: 0.8125rem;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 8px;
    }

    .success-stories {
        grid-template-columns: 1fr;
    }

    .story-card {
        border-right: none;
    }

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

    .practice-card {
        border-right: none;
    }

    .insert-specs {
        grid-template-columns: 1fr;
    }

    .insert-spec-item {
        border-right: none;
    }
}

