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

        body {
           font-family: "Raleway", sans-serif;
           min-height: 100vh;
        }

        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 80px;
            background: rgba(255, 255, 255, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: #111827;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: #f39c63;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        nav a {
            text-decoration: none;
            color: #4d5a6dd4;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #f39c63;
        }

        .login-btn {
            background: #FA9632;
            color: #ffffff;
            padding: 10px 28px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }

        .login-btn:hover {
            background: #e8884d;
        }

        /* Mobile Menu Button - Hidden by default */
        .mobile-menu-btn {
            display: none;
        }

        /* Mobile Menu - Hidden by default */
        .mobile-menu {
            display: none;
        }

        .mobile-menu-overlay {
            display: none;
        }


        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            border-bottom: none;
            background: #ffffff;
        }

        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 20px;
            font-weight: 700;
            color: #111827;
        }

        .mobile-menu-logo-icon {
            width: 32px;
            height: 32px;
            background: #FA9632;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
        }

        .mobile-menu-logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        /*.mobile-menu-close {
            width: 36px;
            height: 36px;
            background: #FA9632;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
            padding: 0;
        }*/

        .mobile-menu-close:hover {
            background: #e8a048;
        }

        .mobile-menu-close svg {
            width: 18px;
            height: 18px;
            stroke: white;
            stroke-width: 3;
        }


        .mobile-nav {
            display: flex;
            flex-direction: column;
            align-items: start;
            padding: 20px 20px;
            gap: 0;
            background: #ffffff;
        }

        .mobile-nav a {
            text-decoration: none;
            color: #4a5568;
            font-size: 17px;
            font-weight: 500;
            padding: 16px 0;
            transition: color 0.3s;
            border-bottom: none;
        }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: #FA9632;
            font-weight: 500;
        }

        .mobile-nav .logout-btn {
            margin-top: 10px;
            width: auto;
            text-align: center;
            background: #FA9632;
            color: #000000;
            padding: 12px 32px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .mobile-nav .logout-btn:hover {
            background: #e8a048;
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 80px 60px;
            gap: 80px;
            background: radial-gradient(circle at right top,#fa963294 0%,#FFF6EF 40%);
        }

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

        .hero-content h1 {
            font-size: 50px;
            font-weight: 700;
            color: #111827;
            line-height: 60px;
            margin-bottom: 24px;
        }

        .hero-content p {
            font-size: 20px;
            color: #374151;
            line-height: 1.6;
            margin-bottom: 32px;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #FA9632;
            color: #ffffff;
            border: none;
        }

        .btn-primary:hover {
            background: #e8884d;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(243, 156, 99, 0.3);
        }

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

        .btn-secondary:hover {
            background: #f39c63;
            color: white;
            transform: translateY(-2px);
        }

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

        .hero-image img {
            width: 100%;
            max-width: 475px;
            height: auto;
            margin-top: 25px;
        }

        /* Features Section */
        .features {
            padding: 80px 80px 70px;
            background: #d3d4d55e;
        }

        .features h2 {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 60px;
        }

        .features-container {
            max-width: 1232px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 32px;
            display: flex;
            align-items: center;
            gap: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0px 4px 6px 0px rgba(17, 24, 39, 0.35);
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            min-width: 64px;
            background: #FFF6EF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .feature-icon img {
            max-width: 100%;
            height: auto;
        }

        .feature-content {
            flex: 1;
        }

        .feature-content h3 {
            font-size: 24px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .feature-content p {
            font-size: 16px;
            color: #4d5a6dd4;
            line-height: 1.5;
            font-weight: 400;
        }

        .feature-accent {
            width: 4px;
            height: 60px;
            background: #FA9632;
            border-radius: 2px;
            margin-left: auto;
        }

        /* Publishing Steps Section */
        .publishing-steps {
            padding: 100px 80px;
            background: #ffffff;
            position: relative;
        }

        .publishing-steps h2 {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 60px;
        }

        .steps-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 80px;
            position: relative;
        }

       /* .steps-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background-image: repeating-linear-gradient(
                to bottom,
                #d1d5db 0,
                #d1d5db 8px,
                transparent 8px,
                transparent 16px
            );
            transform: translateX(-50%);
            z-index: 1;
        }*/

        /*.step {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }
*/
        .step.reverse {
            flex-direction: row-reverse;
        }


        /* Driven by Research Section */
        .driven-section {
            padding: 20px 80px;
            background: white;
            
        }

        .driven-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .driven-content {
            flex: 1;
        }

        .driven-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #111827;
            line-height: 1.2;
            margin-bottom: 28px;
        }

        .driven-content > p {
            font-size: 16px;
            color: #4d5a6dd4;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .driven-features {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

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

        .driven-feature-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: #FFF6EF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .driven-feature-icon img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .driven-feature-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 8px;
        }

        .driven-feature-content p {
            font-size: 1rem;
            color: #4d5a6dd4;
            line-height: 1.6;
        }

        .driven-image {
            flex: 1;
        }

        .driven-image img {
            width: 100%;
            max-width: 592px;
            height: auto;
            border-radius: 12px;
            margin-bottom: 6px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        /* Footer Section */
        footer {
            background: #1A1A1A;
            padding: 60px 40px 40px;
            text-align: center;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background: #f39c63;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
        }

        .footer-logo-text {
            font-size: 30px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .footer-tagline {
            font-size: 15px;
            color: #9CA3AF;
            margin-bottom: 32px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 40px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: #FA9632;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: #e8884d;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(243, 156, 99, 0.4);
        }

        .footer-divider {
            height: 1px;
            background: #444;
            margin-bottom: 28px;
        }

        .footer-copyright {
            font-size: 16px;
            color: #9CA3AF;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            header {
                padding: 20px 40px;
            }

            .hero {
                padding: 60px 40px 40px;
                gap: 40px;
            }

            .features {
                padding: 60px 40px 80px;
            }

            .publishing-steps {
                padding: 80px 40px;
            }

            .driven-section {
                padding: 40px 40px;
            }

            .driven-container {
                gap: 60px;
            }

            .step-content {
                margin: 0 20px !important;
                padding: 25px 30px !important;
            }

            .step-image {
                margin: 0 15px !important;
            }

            .driven-image img {
                max-width: 100%;
            }
        }

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

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

            .hero-content h1 {
                font-size: 42px;
                line-height: 52px;
            }

            .hero-image {
                max-width: 100%;
                display: flex;
                justify-content: center;
            }

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

            .publishing-steps h2 {
                font-size: 32px !important;
            }

            .driven-container {
                flex-direction: column;
            }

            .driven-content {
                text-align: center;
            }

            .step {
                grid-template-columns: 1fr !important;
                grid-template-rows: auto !important;
                gap: 30px !important;
                margin-bottom: 80px !important;
            }

            .timeline-line {
                display: none !important;
            }

            .step-content {
                height: auto !important;
                margin: 0 !important;
                padding: 25px 30px !important;
            }

            .step-image {
                margin: 0 !important;
                width: 100%;
            }

            .step-image img {
                max-width: 100%;
            }

            .step:nth-child(odd) .step-content,
            .step:nth-child(even) .step-content {
                grid-column: 1 !important;
                grid-row: 1 !important;
                text-align: center !important;
            }

            .step:nth-child(odd) .step-number,
            .step:nth-child(even) .step-number {
                grid-column: 1 !important;
                grid-row: 2 !important;
                margin: 0 auto !important;
            }

            .step:nth-child(odd) .step-image,
            .step:nth-child(even) .step-image {
                grid-column: 1 !important;
                grid-row: 3 !important;
            }

            .step-content h2 {
                text-align: center !important;
                font-size: 22px !important;
            }

            .step-content p {
                text-align: center !important;
            }

            .driven-container {
                gap: 50px;
            }

            .driven-image img {
                max-width: 100%;
            }

            .driven-feature-icon {
                width: 44px;
                height: 44px;
                min-width: 44px;
            }

            .driven-feature-icon img {
                width: 24px;
                height: 24px;
            }
        }
            .driven-feature-content h3{
                text-align: left;
            }
            .driven-feature-content p{
                text-align: left;
            }
            .hero-buttons {
                justify-content: center;
            }

        @media (max-width: 768px) {
            .publishing-steps {
                padding: 50px 15px;
            }

            .publishing-steps h2 {
                font-size: 26px !important;
                margin-bottom: 35px !important;
            }

            .step {
                margin-bottom: 60px !important;
                gap: 20px !important;
            }

            .step-content {
                padding: 20px 18px !important;
            }

            .step-content h2 {
                font-size: 20px !important;
                margin-bottom: 14px !important;
            }

            .step-content p {
                font-size: 14px !important;
                margin-bottom: 10px !important;
            }

            .step-number {
                width: 42px !important;
                height: 42px !important;
                font-size: 17px !important;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 18px 20px;
            }

            header nav {
                display: none;
            }

            /* Show mobile menu button */
            .mobile-menu-btn {
                display: flex !important;
                flex-direction: column;
                justify-content: space-between;
                width: 28px;
                height: 22px;
                background: transparent;
                border: none;
                cursor: pointer;
                padding: 0;
                z-index: 1001;
            }

            .mobile-menu-btn span {
                display: block;
                width: 100%;
                height: 3px;
                background: #111827;
                border-radius: 2px;
                transition: all 0.3s ease;
            }

            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            /* Show mobile menu */
            .mobile-menu {
                display: block !important;
                position: fixed;
                top: 15px;
                left: 15px;
                right: 15px;
                width: auto;
                max-width: calc(100% - 30px);
                background: #ffffff;
                box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
                z-index: 1000;
                transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
                overflow-y: auto;
                align-items: start;
                border-radius: 6px;
                transform: translateX(calc(100% + 30px));
                opacity: 0;
                max-height: calc(100vh - 30px);
            }

            .mobile-menu.active {
                transform: translateX(0);
                opacity: 1;
            }

            /* Show mobile menu overlay */
            .mobile-menu-overlay {
                display: block !important;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.5);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .mobile-menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .hero {
                flex-direction: column;
                padding: 40px 20px;
                gap: 40px;
            }

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

            .hero-content h1 {
                font-size: 40px;
            }

            .hero-buttons {
                justify-content: center;
            }

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

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

            .features {
                padding: 60px 20px;
            }

            .features h2 {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .feature-card {
                padding: 24px;
                gap: 16px;
            }

            .feature-icon {
                width: 48px;
                height: 48px;
                min-width: 48px;
                font-size: 20px;
            }

            .feature-icon img {
                max-width: 80%;
                height: auto;
            }

            .feature-content h3 {
                font-size: 18px;
            }

            .feature-content p {
                font-size: 14px;
            }

            .feature-accent {
                display: none;
            }

            .publishing-steps {
                padding: 60px 20px;
            }

            .publishing-steps h2 {
                font-size: 28px !important;
                margin-bottom: 40px !important;
            }

            .steps-container {
                padding: 0;
            }

            .timeline-line {
                display: none;
            }

            .step {
                grid-template-columns: 1fr !important;
                grid-template-rows: auto !important;
                gap: 25px !important;
                margin-bottom: 60px !important;
            }

            .step:nth-child(odd) .step-content,
            .step:nth-child(even) .step-content {
                grid-column: 1 !important;
                grid-row: 1 !important;
                margin: 0 !important;
                text-align: center !important;
                height: auto !important;
                padding: 25px 20px !important;
            }

            .step:nth-child(odd) .step-number,
            .step:nth-child(even) .step-number {
                grid-column: 1 !important;
                grid-row: 2 !important;
                margin: 0 auto !important;
            }

            .step:nth-child(odd) .step-image,
            .step:nth-child(even) .step-image {
                grid-column: 1 !important;
                grid-row: 3 !important;
                margin: 0 !important;
            }

            .step-content h2 {
                font-size: 22px !important;
                text-align: center !important;
                margin-bottom: 16px !important;
            }

            .step-content p {
                font-size: 15px !important;
                text-align: center !important;
                margin-bottom: 12px !important;
            }

            .driven-section {
                padding: 60px 20px;
            }

            .driven-container {
                flex-direction: column;
                gap: 40px;
            }

            .driven-content h2 {
                font-size: 32px;
            }

            .driven-content > p {
                font-size: 15px;
            }

            .driven-features {
                margin-top: 30px;
                gap: 24px;
            }

            .driven-feature-icon {
                width: 44px;
                height: 44px;
                min-width: 44px;
                font-size: 18px;
            }

            .driven-feature-icon img {
                width: 24px;
                height: 24px;
            }

            .driven-feature-content h3 {
                font-size: 17px;
            }

            .driven-feature-content p {
                font-size: 14px;
            }

            .driven-image {
                width: 100%;
            }

            .driven-image img {
                width: 100%;
                max-width: 100%;
                height: auto;
            }

            .step-image img {
                width: 100%;
                max-width: 100%;
                height: auto;
            }

            footer {
                padding: 50px 20px 30px;
            }

            .footer-logo-text {
                font-size: 24px;
            }

            .footer-tagline {
                font-size: 14px;
            }

            .social-links {
                gap: 12px;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }
        .header {
            text-align: center;
            margin-bottom: 100px;
            padding-top: 20px;
        }

        .header h1 {
            font-size: 3.8rem;
            font-weight: 700;
            color: #000;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .timeline-container {
            position: relative;
/*            padding: 60px 0;*/
        }

      .timeline-line {
    position: absolute;
    left: 50%;
    top: 2px;
    bottom: 4px;
    width: 3px;
    transform: translateX(-50%);
    z-index: 1;
    border-left: none !important;
    background: #f1b87a;

    /* Main center line */
    background: #f1b87a;

}


        .step {
            position: relative;
            margin-bottom: 60px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 0;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step-content {
            background: #ffffff;
            padding: 30px 50px;
            border-radius: 16px;
           box-shadow: 0px 11px 10px -4px rgba(17, 24, 39, 0.35);
            position: relative;
            z-index: 2;
            min-height: 250px;
            margin: 0 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .step-image {
            position: relative;
            z-index: 2;
            margin: 0 22px;
        }

        .step-image img {
            width: 100%;
/*            max-width: 560px;*/
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: #FA9632;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 19px;
            font-weight: 600;
            z-index: 3;
            position: relative;
        }

        .step-content h2 {
            font-size: 24px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 30px;
            letter-spacing: -0.3px;
        }

        .step-content p {
            font-size: 16px;
            color: #4d5a6dd4;
            font-weight: 400;
            margin-bottom: 18px;
            line-height: 1.75;
        }

        .step-content p:last-child {
            margin-bottom: 0;
        }

        .step:nth-child(odd) .step-image {
            grid-column: 1;
            grid-row: 1;
        }

        .step:nth-child(odd) .step-number {
            grid-column: 2;
            grid-row: 1;
        }

        .step:nth-child(odd) .step-content {
            grid-column: 3;
            grid-row: 1;
            text-align: left;
        }

        .step:nth-child(even) .step-content {
            grid-column: 1;
            grid-row: 1;
            text-align: left;
        }

        .step:nth-child(even) .step-number {
            grid-column: 2;
            grid-row: 1;
        }

        .step:nth-child(even) .step-image {
            grid-column: 3;
            grid-row: 1;
        }

        @media (max-width: 560px){
            .hero-content h1 {
                font-size: 35px;
                line-height: 50px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .feature-card {
                flex-direction: column;
                text-align: center;
            }

            .feature-icon {
                margin: 0 auto;
            }

            .step-content {
                padding: 20px 15px !important;
            }

            .step-content h2 {
                font-size: 18px !important;
            }

            .step-content p {
                font-size: 13px !important;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 15px 15px;
            }

            .logo {
                font-size: 20px;
            }

            .hero {
                padding: 30px 15px;
                gap: 30px;
            }

            .hero-content h1 {
                font-size: 30px;
                line-height: 45px;
            }

            .hero-content p {
                font-size: 18px;
            }

            .features {
                padding: 40px 15px 60px;
            }

            .features h2 {
                font-size: 26px;
                margin-bottom: 30px;
            }

            .feature-card {
                padding: 20px;
            }

            .publishing-steps {
                padding: 40px 15px;
            }

            .publishing-steps h2 {
                font-size: 24px !important;
                margin-bottom: 30px !important;
            }

            .driven-section {
                padding: 40px 15px;
            }

            .driven-content h2 {
                font-size: 26px;
            }

            .driven-content > p {
                font-size: 14px;
            }

            .driven-feature {
                gap: 12px;
            }

            .driven-feature-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
            }

            .driven-feature-icon img {
                width: 20px;
                height: 20px;
            }

            .driven-feature-content h3 {
                font-size: 16px;
            }

            .driven-feature-content p {
                font-size: 13px;
            }
        }