/*
Theme Name: Trademark Theme
Theme URI: http://example.com/trademark-theme
Author: Your Name
Author URI: http://example.com
Description: A modern WordPress theme for Trademark Directory
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trademark-theme
Template:     twentytwentyfive
*/



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

:root {
    --navy: #1b2232;
    --primary-blue: #4a78a6;
    --primary-blue-dark: #345a82;
    --light-blue: #dce1e7;
    --white: #fffbfc;
    --blue: #4a78a6;
    --gray: #64748B;
    --light-gray: #F8FAFC;
    --peach: #dce1e7;
    --light-peach: #f0f3f7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--navy);
    background-color: var(--white);
}

ul {
    list-style-type: none;
    /* Removes the bullet points */
    padding: 0;
    /* Removes default padding */
    margin: 0;
    /* Removes default margin */
}

a {
    text-decoration: none;
    /* Removes the underline */
}

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

/* Placeholder Styles */
.image-placeholder {
    background-color: rgba(0, 0, 0, 0.05);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.logo-placeholder {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    height: 30px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 12px;
    text-align: center;
    margin-right: 16px;
}

.rating-logo-placeholder {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    height: 28px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
}

.testimonial-image-placeholder {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.resource-image-placeholder {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    text-align: center;
}

/* Header */
.header {
    background: white;
    /* padding: 1rem 0; */
    position: fixed;
    margin-top: -2%;
    width: 100%;
    top: 0;
    z-index: 100;
    /* border-bottom: 1px solid #F5E8E2; */
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 24px;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: var(--navy);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 8px 12px;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    /* background-color: var(--primary-blue) !important; */
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-nav:hover {
    background-color: #345a82 !important;
    color: white !important
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
    padding: 4px;
}

/* Hero Section */
.hero-section {
    /* padding: 100px 0; */
    background-color: var(--light-blue);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-button {
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.trusted-by {
    margin-top: 40px;
    text-align: center;
}

.trusted-by-text {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.trusted-by-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* How It Works Section */
.how-it-works {
    display: flex;
    padding: 3.5rem 0;
    background-color: white;
    text-align: center;
}

.how-it-works .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.how-it-works .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.step-item {
    text-align: center;
    position: relative;
    width: 33.333%;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.step-description {
    color: var(--gray);
    font-size: 14px;
    max-width: 200px;
    margin: 0 auto;
}

/* Rating Section */
.rating-section {
    padding: 40px 0;
    background-color: white;
    text-align: center;
    border-bottom: 1px solid #F5E8E2;
}

.rating-large {
    max-width: 540px;
    margin: 0 auto;
}

.rating-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.rating-source {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.rating-logo {
    height: 28px;
}

/* Testimonial Highlight */
.testimonial-highlight {
    padding: 64px 0;
    background-color: var(--light-gray);
}

.testimonial-card {
    background: var(--navy);
    border-radius: 6px;
    padding: 24px;
    color: white;
    max-width: 720px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    opacity: 0.8;
}

/* Pricing Section */
.pricing-section {
    padding: 64px 0;
    background-color: var(--navy);
    color: #fff;
}

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

.pricing-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.pricing-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: #fff;
    border-radius: 6px;
    padding: 24px;
    text-align: left;
    position: relative;
    border-top: 5px solid transparent;
}

.pricing-card.basic {
    border-top-color: var(--primary-blue);
}

.pricing-card.standard {
    border-top-color: var(--primary-blue);
}

.pricing-card.premium {
    border-top-color: var(--primary-blue);
}

.pricing-card h3 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.price-period {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-top: 20px;
}

.pricing-features li {
    color: var(--navy);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
    font-size: 14px;
}

.pricing-features li::before {
    content: '✓';
    color: #4a78a6;
    position: absolute;
    left: 0;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 64px 0;
    background-color: #fff;
}

.features-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-content {
    max-width: 480px;
}

.feature-content .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-content .section-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #dce1e7;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: #4a78a6;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
}

.feature-item p {
    color: var(--gray);
    font-size: 14px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Stats Section */
.stats-section {
    padding: 48px 0;
    background-color: var(--navy);
}

.stats-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4a78a6;
    margin-bottom: 8px;
}

.stat-label {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

/* Resources Section */
.resources-section {
    padding: 64px 0;
    background-color: white;
}

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

.resources-heading {
    margin-bottom: 40px;
    text-align: center;
}

.resources-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.resources-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.resource-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.resource-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.resource-content {
    padding: 20px;
}

.resource-category {
    display: inline-block;
    background: #dce1e7;
    color: #4a78a6;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.resource-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.resource-content p {
    color: var(--gray);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 64px 0;
    background-color: var(--navy);
    background-image: linear-gradient(135deg, #1B2B4D 0%, #2a4170 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--navy);
}

.btn-secondary {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 24px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}



.footer-copyright {
    font-size: 12px;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
}

.footer-payment-icons img {
    height: 20px;
    margin-left: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: #4a78a6;
}

/* Footer Styling */
footer {
    background-color: #1E3A8A;
    /* Dark blue background */
    color: #FFFFFF;
    /* White text */
    font-family: 'Arial', sans-serif;
}

footer h3 {
    font-size: 1.25rem;
    /* Larger font size for headings */
    font-weight: bold;
    margin-bottom: 1rem;
}

footer p,
footer a {
    font-size: 0.875rem;
    /* Smaller font size for text */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    /* Slightly transparent white */
}

footer a:hover {
    color: #FFFFFF;
    /* Full white on hover */
    text-decoration: underline;
    /* Underline links on hover */
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

footer .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    footer .grid {
        grid-template-columns: repeat(4, 1fr);
        /* Four columns on medium screens and up */
    }
}

footer .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .flex img {
    height: 2rem;
    /* Adjust icon size */
}

footer .flex a {
    display: inline-block;
    margin-right: 0.5rem;
}

footer .text-center {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
    }

    .pricing-grid,
    .steps-grid,
    .stats-grid,
    .testimonials-grid,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-by-logos {
        justify-content: center;
    }

    .hero-section {
        /* padding: 100px 0 60px; */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .pricing-grid,
    .steps-grid,
    .stats-grid,
    .testimonials-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .trusted-by-logos {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-section {
        /* padding: 90px 0 40px; */
    }
}

/* Dropdown Menus */
.nav-item {
    position: relative;
}

.has-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    margin-top: 8px;
    min-width: 200px;
    padding: 24px;
}

.services-dropdown {
    width: 600px;
}

.resources-dropdown {
    width: 300px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.dropdown-header svg {
    color: var(--primary-blue);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dropdown-item {
    display: block;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--light-peach);
}

.item-title {
    color: var(--navy);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}

.item-description {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.4;
}

.dropdown-sections {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dropdown-section .dropdown-item {
    color: var(--navy);
    font-size: 14px;
    padding: 8px 12px;
}

/* Register Page Styles */
.register-hero {
    position: relative;
    min-height: 700px;
    background: url('../images/trademark-pics/register-bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0;
}

.register-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.register-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 600px;
}

.hero-text {
    color: var(--navy);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--navy);
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-features {
    list-style: none;
    margin-bottom: 30px;
}

.hero-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 16px;
}

.hero-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4a78a6;
}

.register-button {
    display: inline-block;
    background: #4a78a6;
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: background-color 0.2s;
}

.register-button:hover {
    background: #1b2232;
}

.hero-ratings {
    display: flex;
    gap: 20px;
    align-items: center;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.rating-logo {
    height: 24px;
    width: auto;
}

.inc-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.inc-logo {
    height: 24px;
    width: auto;
}

.inc-text {
    font-size: 12px;
    color: var(--gray);
}

.recommendation-bar {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 12px;
    position: relative;
    z-index: 2;
}

.recommendation-bar p {
    font-size: 14px;
    margin: 0;
}

/* Media Queries for Register Page */
@media (max-width: 768px) {
    .register-hero {
        min-height: auto;
    }

    .register-container {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-ratings {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Registration Process Styles */
.registration-step {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-progress {
    margin-bottom: 24px;
}

.progress {
    height: 8px;
    background-color: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    background-color: #4a78a6;
    transition: width 0.3s ease;
}

.step-count {
    font-size: 14px;
    color: #6B7280;
    text-align: center;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.step-description {
    color: #6B7280;
    font-size: 16px;
}

.registration-form {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 32px;
}

.form-row {
    margin-bottom: 24px;
}

.form-group {
    position: relative;
}

.form-group.required label:after {
    content: "*";
    color: #DC2626;
    margin-left: 4px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 10px 16px;
    font-size: 16px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #4a78a6;
    box-shadow: 0 0 0 3px rgba(74, 120, 166, 0.1);
}

.form-text {
    font-size: 12px;
    color: #6B7280;
    margin-top: 4px;
}

.consent-section {
    margin-bottom: 32px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.consent-checkbox {
    margin-top: 4px;
}

.consent-label {
    font-size: 14px;
    color: #4B5563;
}

.consent-label a {
    color: #4a78a6;
    text-decoration: none;
}

.consent-label a:hover {
    text-decoration: underline;
}

.form-navigation {
    display: flex;
    justify-content: flex-end;
}

.btn-continue {
    background: #4a78a6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-continue:hover {
    background: #1b2232;
}

.error-message {
    background-color: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #DC2626;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 14px;
}