:root {
    --primary: #1a5ba5;
    --primary-dark: #134785;
    --secondary: #3e9bcc;
    --accent: #ff7a00;
    --light: #f5f7fa;
    --dark: #2a2f36;
    --gray: #e0e3e8;
    --text: #333333;
    --navy: #000066;
    --yellow: #FFCC00;
    --copyright-text: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
    margin-bottom: 1rem;
}

/* Additional Typography Classes */
.head1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.head2 {
    font-family: 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.body1 {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text);
}

.body2 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
}

.body3 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--light);
    color: var(--primary);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.contact-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #666;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Navigation Tables */
.navtable {
    padding-left: 0.5rem;
    background-color: white;
    margin-left: 0.5rem;
}

.rightnavtable {
    padding-left: 0.5rem;
    background-color: white;
    margin-left: 0.5rem;
    width: 150px;
    border: 1px solid var(--navy);
}

.rightnavHead {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--yellow);
    padding-left: 0.5rem;
    background-color: var(--navy);
    text-align: center;
}

.rightnavrow {
    font-size: 0.875rem;
    font-weight: 700;
    background-color: white;
    text-align: center;
}

.rightnavCurrent {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    padding-left: 0.5rem;
    background-color: var(--gray);
    text-align: center;
}

.navrow {
    font-size: 0.875rem;
    font-weight: 700;
    background-color: white;
    border-right: 1px solid var(--navy);
    text-align: center;
}

.navrowCurrent {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    background-color: var(--gray);
    text-align: center;
    border-right: 1px solid var(--navy);
}

/* Center Content Tables */
.centertable {
    margin: 0.625rem 0;
    width: 620px;
    background-color: white;
    margin-left: 2.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text);
}

.centertable2 {
    margin: 0.625rem 0;
    width: 700px;
    background-color: white;
    margin-left: 0.625rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text);
}

.centercell {
    padding-right: 0.625rem;
    vertical-align: top;
}

/* Links */
a.link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    padding-left: 0.5rem;
    transition: all 0.3s ease;
}

a.link:hover {
    font-size: 0.9375rem;
    color: var(--yellow);
}

/* Copyright */
.copyright {
    font-size: 0.625rem;
    font-weight: 400;
    color: var(--copyright-text);
}

/* List Styles */
ul {
    list-style-type: square;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu-open nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    nav a {
        padding: 0.75rem 1rem;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Row and Column Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col {
    flex: 1;
    padding: 0 1rem;
}

/* Logo Text */
.logo h1 {
    font-size: 1.5rem;
    margin: 0 0 0 0.5rem;
    color: var(--primary);
}

/* Navigation Button */
.nav-button {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
}

.nav-button:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Home Page */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('/api/placeholder/500/500');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.solutions {
    padding: 5rem 0;
}

.solutions-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.solution-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.solution-content {
    padding: 1.5rem;
}

.solution-content h3 {
    margin-bottom: 0.75rem;
}

.solutions .row {
    gap: 2rem;
}

.features {
    padding: 5rem 0;
    background-color: var(--gray);
}

.features-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
}

.cta {
    padding: 5rem 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e66c00;
}

.cta-secondary {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: var(--light);
}

@media (max-width: 768px) {
    .solutions .col {
        flex: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* RSP Content */
.rsp-content {
    padding: 5rem 0;
}

.rsp-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .rsp-grid {
        grid-template-columns: 1fr;
    }
}

.rsp-main {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.rsp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rsp-image {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.rsp-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.rsp-image p {
    margin-top: 1rem;
    text-align: center;
    color: var(--primary);
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.comparison-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comparison-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.comparison-card ul {
    list-style: none;
    margin-top: 1rem;
}

.comparison-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.comparison-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Code Example Page */
.code-example {
    padding: 5rem 0;
}

.code-content {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.code-image {
    margin: 2rem 0;
}

.code-description {
    margin-top: 2rem;
    text-align: center;
}

/* Trial Page */
.trial-content {
    padding: 5rem 0;
}

.trial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.trial-form {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.trial-info {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-card {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
}

.info-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.required {
    color: var(--error);
    margin-left: 0.25rem;
}

.invalid-feedback {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media (max-width: 992px) {
    .trial-grid {
        grid-template-columns: 1fr;
    }
}

/* Solutions Page */
.solutions-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.solutions-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.solutions-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-grid {
    padding: 5rem 0;
    background-color: var(--light);
}

.solutions-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.solution-card h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* iSeries Integration Page */
.integration-content {
    padding: 5rem 0;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.integration-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.integration-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Custom Development Page */
.development-content {
    padding: 5rem 0;
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.development-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.development-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.development-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.development-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.process-steps {
    list-style: none;
    margin: 2rem 0;
}

.process-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
}

.process-steps li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Web Applications Page */
.web-apps-content {
    padding: 5rem 0;
}

.web-apps-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.web-apps-content > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    color: var(--text);
    opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Mobile Solutions Page */
.mobile-solutions-content {
    padding: 5rem 0;
}

.mobile-solutions-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-solutions-content > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    color: var(--text);
    opacity: 0.9;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.solution-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.solution-card p {
    color: var(--text);
    opacity: 0.9;
    line-height: 1.6;
}

/* About Page */
.company-content {
    padding: 5rem 0;
}

.company-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.company-sidebar {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.company-sidebar h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.company-sidebar ul {
    list-style: none;
}

.company-sidebar li {
    margin-bottom: 0.5rem;
}

.company-sidebar a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.company-sidebar a:hover {
    color: var(--primary);
}

.company-sidebar .current {
    color: var(--primary);
    font-weight: 500;
}

.company-main {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.company-main p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .company-grid {
        grid-template-columns: 1fr;
    }
}

/* RSP Code Samples */
.code-samples {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.code-samples img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* News Header and Body */
.news-header {
    text-align: center;
    margin-bottom: 2rem;
}

.news-header h1 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.news-header h2 {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: normal;
}

.news-body {
    margin-bottom: 2rem;
}

.news-body p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-body p:last-child {
    margin-bottom: 0;
}

/* News Page */
.news-content {
    padding: 5rem 0;
}

.news-content h1 {
    margin-bottom: 3rem;
    text-align: center;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.news-item:last-child {
    margin-bottom: 0;
}

.news-item h3 {
    margin-bottom: 0.5rem;
}

.news-item h3 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.news-item h3 a:hover {
    color: var(--primary-dark);
}

.news-date {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.news-item p {
    margin-bottom: 0;
}

.about-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

.about-section h3 {
    margin-bottom: 1rem;
}

.about-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.about-section a:hover {
    color: var(--primary-dark);
}

/* News Article Page */
.news-article {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.news-article .news-date {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.news-body {
    margin-bottom: 2rem;
}

.news-body p {
    margin-bottom: 1.5rem;
}

.news-body p:last-child {
    margin-bottom: 0;
}

.news-body ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.news-body ul li {
    margin-bottom: 0.75rem;
}

.news-body ul li:last-child {
    margin-bottom: 0;
}

.news-body a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.news-body a:hover {
    color: var(--primary-dark);
} 