/* Raj Pipe Industries - Professional CSS Stylesheet */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3d6f;
}

a:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn--primary {
    background-color: #2c5aa0;
    color: white;
}

.btn--primary:hover {
    background-color: #1e3d6f;
    color: white;
}

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

.btn--secondary:hover {
    background-color: #2c5aa0;
    color: white;
}

.btn--large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__logo {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 0;
}

.nav__tagline {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

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

.nav__link {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav__link--active {
    color: #2c5aa0;
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2c5aa0;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.hero__brand {
    color: #1e3d6f;
    font-weight: 700;
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Styles */
.section__title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.section__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Value Propositions */
.value-props {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.value-prop {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-5px);
}

.value-prop__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-prop__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Products Teaser */
.products-teaser {
    padding: 4rem 0;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card__title {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c5aa0;
}

.product-card__description {
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-card__link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 1.5rem 1.5rem;
    background-color: #2c5aa0;
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Quality Badges */
.quality-badges {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.badge {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.badge__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.badge__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Client Trust */
.client-trust {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
}

.client-trust__title {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.client-trust__description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.client-trust__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat__number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header__title {
    color: white;
    margin-bottom: 1rem;
}

.page-header__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.company-overview {
    padding: 4rem 0;
}

.company-overview__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.company-overview__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.manufacturing {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.capability {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.capability__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.capability__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.materials-quality {
    padding: 4rem 0;
}

.materials-quality__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.materials-quality__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.materials-list__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.materials-list__items {
    list-style: none;
    padding-left: 0;
}

.materials-list__items li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.materials-list__items li:before {
    content: '✓';
    color: #2c5aa0;
    font-weight: bold;
    margin-right: 0.5rem;
}

.quality-process {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

.process-step__number {
    width: 60px;
    height: 60px;
    background-color: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.certifications {
    padding: 4rem 0;
}

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

.certification {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.certification__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.certification__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.chennai-presence {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.chennai-presence__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chennai-presence__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chennai-benefits__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.chennai-benefits__list {
    list-style: none;
    padding-left: 0;
}

.chennai-benefits__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.chennai-benefits__list li:before {
    content: '✓';
    color: #2c5aa0;
    font-weight: bold;
    margin-right: 0.5rem;
}

.distribution {
    padding: 4rem 0;
}

.distribution__description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.distribution__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.distribution-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.distribution-stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.distribution-stat__label {
    font-size: 1rem;
    color: #666;
}

/* Services Page Styles */
.products-overview {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.product-categories {
    padding: 4rem 0;
}

.product-categories__grid {
    display: grid;
    gap: 3rem;
}

.product-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-category:nth-child(even) {
    direction: rtl;
}

.product-category:nth-child(even) > * {
    direction: ltr;
}

.product-category__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.product-category__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.product-category__description {
    color: #666;
    margin-bottom: 1.5rem;
}

.product-category__features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.product-category__features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.product-category__features li:before {
    content: '✓';
    color: #2c5aa0;
    font-weight: bold;
    margin-right: 0.5rem;
}

.technical-specs {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.specs-table {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow-x: auto;
}

.specs-table__title {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.specs-table__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.specs-table__table th,
.specs-table__table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table__table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c5aa0;
}

.services {
    padding: 4rem 0;
}

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

.service {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.quality-assurance {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.quality-assurance__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.quality-assurance__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quality-assurance__features {
    list-style: none;
    padding-left: 0;
}

.quality-assurance__features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.quality-assurance__features li:before {
    content: '✓';
    color: #2c5aa0;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Page Styles */
.contact {
    padding: 4rem 0;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__form-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact__form-title {
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.contact__info-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.contact__info-title {
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.contact__info {
    margin-bottom: 2rem;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact__info-icon {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-top: 0.25rem;
}

.contact__info-content h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.contact__info-link {
    color: #2c5aa0;
    font-weight: 500;
}

.contact__map-section {
    margin-top: 2rem;
}

.contact__map-title {
    color: #2c5aa0;
    margin-bottom: 1rem;
    text-align: center;
}

.contact__map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid #2c5aa0;
}

.contact__map iframe {
    border-radius: 12px;
    width: 100%;
    height: 300px;
    border: none;
}

.contact__map-fallback {
    display: none;
    padding: 2rem;
    background: white;
    text-align: left;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact__map-fallback address {
    font-style: normal;
    line-height: 1.6;
}

.contact__map-fallback strong {
    color: #2c5aa0;
}

.why-contact-raj {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.why-contact-raj__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.why-contact-item__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-contact-item__title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-checkbox-label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

.legal-content__wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.legal-content h2 {
    color: #2c5aa0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #2c5aa0;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer__title {
    color: white;
    margin-bottom: 1rem;
}

.footer__subtitle {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.footer__contact p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.footer__contact a {
    color: white;
}

.footer__links {
    list-style: none;
    padding-left: 0;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: white;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav__menu.active {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__cta {
        justify-content: center;
    }

    .company-overview__content,
    .materials-quality__content,
    .chennai-presence__content,
    .quality-assurance__content {
        grid-template-columns: 1fr;
    }

    .product-category {
        grid-template-columns: 1fr;
    }

    .product-category:nth-child(even) {
        direction: ltr;
    }

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

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .legal-content__wrapper {
        padding: 2rem 1rem;
    }

    .specs-table__table {
        font-size: 0.9rem;
    }

    .specs-table__table th,
    .specs-table__table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn--large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
.btn:focus,
.form-input:focus,
.form-textarea:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn--primary {
        background-color: #000;
        color: #fff;
    }

    .btn--secondary {
        border-color: #000;
        color: #000;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav__toggle,
    .cta {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}
