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

        /* Set entire page background to #CCC with grid pattern */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #fffafa;
            /* Create beautiful grid pattern */
            background-image:
                linear-gradient(rgba(170, 170, 170, 0.2) 1px, transparent 1px),
                linear-gradient(90deg, rgba(170, 170, 170, 0.2) 1px, transparent 1px);
            background-size: 20px 20px;
            background-position: -1px -1px;
            position: relative;
            min-height: 100vh;
        }

        /* Add a subtle overlay to make grid more elegant */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(200, 200, 200, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* Header Styles */
        .header {
            position: sticky;
            top: 0;
            padding: 15px 0;
            z-index: 1000;
            width: 100%;
            /* Create beautiful grid pattern */
            background-image:
                linear-gradient(rgba(170, 170, 170, 0.2) 1px, transparent 1px),
                linear-gradient(90deg, rgba(170, 170, 170, 0.2) 1px, transparent 1px);
            background-size: 20px 20px;
            background-position: -1px -1px;
            backdrop-filter: blur(4px);
            /* optional: soft blur for elegance */
        }

        /* Ensure header content stays above background */
        .header>* {
            position: relative;
            z-index: 1;
        }

        /* Menu links */
        .header .nav-menu a {
            color: #1a5f7a;
            font-weight: 600;
        }

        /* Optional hover effect */
        .header .nav-menu a:hover,
        .header .nav-menu a.active {
            color: #154a5f;
        }


        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

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

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

        .logo h1 {
            color: #1a5f7a;
            font-size: 24px;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .logo-icon {
            color: #1a5f7a;
            margin-right: 10px;
            font-size: 28px;
            filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
        }

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            background-color: transparent;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #444;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: #1a5f7a;
            background-color: rgba(0, 0, 0, 0.05);
        }

        .nav-menu a.active {
            color: #1a5f7a;
            background-color: rgba(0, 0, 0, 0.08);
        }

        /* Main content layout */
        .main-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px 0 30px;
            min-height: calc(80vh - 100px);
        }

        /* Hero Section (replaces svg-container) */
        .hero-section {
            flex: 1;
            max-width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #1a5f7a 0%, #2d9cdb 50%, #57b8d8 100%);
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 15px 40px rgba(26, 95, 122, 0.3);
            position: relative;
            overflow: hidden;
        }

        /* Animated gradient overlay */
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotateGradient 15s linear infinite;
        }

        @keyframes rotateGradient {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-text {
            text-align: center;
            margin-bottom: 25px;
        }

        .hero-headline {
            color: #ffffff;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .hero-subheadline {
            color: rgba(255, 255, 255, 0.95);
            font-size: 15px;
            line-height: 1.5;
            max-width: 95%;
            margin: 0 auto;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 18px 15px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: default;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            font-size: 28px;
            color: #ffffff;
            margin-bottom: 8px;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
        }

        .feature-title {
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 12px;
            line-height: 1.4;
            margin: 0;
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 18px 15px;
        }

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

        .stat-number {
            color: #ffffff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 4px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 12px;
            font-weight: 500;
        }

        /* SIMPLIFIED Login Container */
        .login-container {
            flex: 1;
            max-width: 40%;
            padding-left: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .simple-login-box {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            max-width: 400px;
            width: 100%;
        }

        .simple-login-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .simple-login-header h2 {
            color: #1a5f7a;
            font-size: 28px;
            margin-bottom: 8px;
        }

        .simple-login-header p {
            color: #666;
            font-size: 15px;
        }

        /* Simple Form Styles */
        .simple-form-group {
            margin-bottom: 22px;
        }

        .simple-input {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: #f9f9f9;
        }

        .simple-input:focus {
            outline: none;
            border-color: #1a5f7a;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
        }

        .simple-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .simple-checkbox {
            display: flex;
            align-items: center;
        }

        .simple-checkbox input {
            margin-right: 8px;
        }

        .simple-forgot {
            color: #1a5f7a;
            text-decoration: none;
        }

        .simple-forgot:hover {
            text-decoration: underline;
        }

        /* Simple Login Button */
        .simple-login-btn {
            width: 100%;
            padding: 14px;
            background-color: #1a5f7a;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 20px;
        }

        .simple-login-btn:hover {
            background-color: #154a5f;
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(26, 95, 122, 0.2);
        }

        /* Simple Divider */
        .simple-divider {
            text-align: center;
            margin: 20px 0;
            position: relative;
            color: #888;
            font-size: 14px;
        }

        .simple-divider::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 42%;
            height: 1px;
            background-color: #e0e0e0;
        }

        .simple-divider::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            width: 42%;
            height: 1px;
            background-color: #e0e0e0;
        }

        /* Simple Signup Link */
        .simple-signup {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 15px;
        }

        .simple-signup a {
            color: #1a5f7a;
            text-decoration: none;
            font-weight: 600;
        }

        .simple-signup a:hover {
            text-decoration: underline;
        }

        /* PRICING SECTION */
        .pricing-section {
            padding: 40px 0 60px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            color: #1a5f7a;
            font-size: 32px;
            margin-bottom: 10px;
        }

        .section-title p {
            color: #666;
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

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

        .pricing-card {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .pricing-card.popular {
            border: 2px solid #1a5f7a;
            transform: scale(1.05);
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: #1a5f7a;
            color: white;
            padding: 5px 40px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .card-icon {
            font-size: 48px;
            margin-bottom: 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .individual-icon {
            color: #4CAF50;
        }

        .company-icon {
            color: #2196F3;
        }

        .premium-icon {
            color: #FF9800;
        }

        .pricing-card h3 {
            color: #1a5f7a;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .price {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }

        .price span {
            font-size: 16px;
            color: #666;
            font-weight: 500;
        }

        .pricing-details {
            margin: 20px 0;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .detail-label {
            color: #666;
            text-align: left;
        }

        .detail-value {
            color: #333;
            font-weight: 600;
            text-align: right;
        }

        .pricing-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 25px;
            min-height: 80px;
        }

        .pricing-btn {
            width: 100%;
            padding: 12px;
            background-color: #1a5f7a;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pricing-btn:hover {
            background-color: #154a5f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 95, 122, 0.2);
        }

        .pricing-btn.premium-btn {
            background-color: #FF9800;
        }

        .pricing-btn.premium-btn:hover {
            background-color: #F57C00;
        }

        /* PRICING CALCULATOR SECTION */
        .calculator-section {
            padding: 60px 0;
            background-color: rgba(255, 255, 255, 0.7);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .calculator-box {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            max-width: 800px;
            margin: 0 auto;
        }

        .calculator-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .calculator-input-group {
            margin-bottom: 25px;
        }

        .calculator-input-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
            font-size: 15px;
        }

        .calculator-input-group select,
        .calculator-input-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: #f9f9f9;
        }

        .calculator-input-group select:focus,
        .calculator-input-group input:focus {
            outline: none;
            border-color: #1a5f7a;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
        }

        .calculator-result {
            background-color: #f0f9ff;
            border-radius: 10px;
            padding: 25px;
            margin-top: 30px;
            border-left: 4px solid #1a5f7a;
        }

        .result-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ddd;
        }

        .result-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
            font-weight: 700;
            font-size: 18px;
            color: #1a5f7a;
        }

        .result-label {
            color: #666;
        }

        .result-value {
            color: #333;
            font-weight: 600;
        }

        .calc-btn {
            width: 100%;
            padding: 14px;
            background-color: #1a5f7a;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .calc-btn:hover {
            background-color: #154a5f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 95, 122, 0.2);
        }

        /* API SECTION */
        .api-section {
            padding: 60px 0;
        }

        .api-box {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .code-block {
            background-color: #2d2d2d;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
        }

        .code-block pre {
            color: #f8f8f2;
            line-height: 1.5;
            font-size: 14px;
        }

        .code-comment {
            color: #6a9955;
        }

        .code-keyword {
            color: #569cd6;
        }

        .code-string {
            color: #ce9178;
        }

        .code-function {
            color: #dcdcaa;
        }

        .code-variable {
            color: #9cdcfe;
        }

        .api-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .api-feature {
            background-color: #f0f9ff;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }

        .api-feature i {
            font-size: 32px;
            color: #1a5f7a;
            margin-bottom: 15px;
        }

        /* FOOTER */
        .footer {
            background-color: rgba(26, 95, 122, 0.9);
            color: white;
            padding: 60px 0 30px;
            margin-top: 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #1a5f7a;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            padding: 8px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-content {
                flex-direction: column;
                padding: 30px 0 20px;
            }

            .hero-section,
            .login-container {
                max-width: 100%;
                width: 100%;
            }

            .hero-section {
                margin-bottom: 40px;
                max-width: 90%;
                padding: 40px 30px;
            }

            .hero-headline {
                font-size: 32px;
            }

            .hero-subheadline {
                font-size: 16px;
                max-width: 100%;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .trust-indicators {
                flex-direction: column;
                gap: 20px;
            }

            .login-container {
                padding-left: 0;
                align-items: center;
                margin-bottom: 40px;
            }

            .simple-login-box {
                width: 100%;
                max-width: 450px;
            }

            .pricing-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .pricing-card.popular {
                transform: scale(1);
            }

            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }

            .calculator-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .api-features {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(255, 255, 255, 0.95);
                flex-direction: column;
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s;
                z-index: 999;
                border-top: 1px solid rgba(0, 0, 0, 0.08);
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
            }

            .nav-menu li {
                margin: 10px 0;
                text-align: center;
            }

            .svg-container {
                max-width: 95%;
            }

            .simple-login-box {
                padding: 25px 20px;
            }

            .simple-login-header h2 {
                font-size: 24px;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .pricing-card.popular {
                order: -1;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .calculator-box,
            .api-box {
                padding: 25px 20px;
            }

            .api-features {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }