			* {
				margin: 0;
				padding: 0;
				box-sizing: border-box;
			}
			
			body {
				font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
				background: #ffffff;
				color: #333333;
				line-height: 1.6;
			}
			
			/* Header/Navigation */
			.header {
				/* PLACEHOLDER HEADER BACKGROUND - Replace with brand color */
				background: #2c3e50;
				padding: 1rem 0;
				position: fixed;
				width: 100%;
				top: 0;
				z-index: 1000;
				box-shadow: 0 2px 5px rgba(0,0,0,0.1);
			}
			
			.nav-container {
				max-width: 1400px;
				margin: 0 auto;
				padding: 0 3rem;
				display: flex;
				justify-content: space-between;
				align-items: center;
			}
			
			.logo-section {
				display: flex;
				align-items: center;
				gap: 1rem;
			}
			
			.logo-box {
				width: 45px;
				height: 45px;
				background: #ffffff;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 1.5rem;
				border-radius: 4px;
			}
			
			.company-name {
				color: #ffffff;
				font-size: 1.4rem;
				font-weight: 600;
				letter-spacing: 0.5px;
			}
			
			.nav-menu {
				display: flex;
				list-style: none;
				gap: 2.5rem;
			}
			
			.nav-menu a {
				color: #ffffff;
				text-decoration: none;
				font-size: 0.95rem;
				font-weight: 500;
				opacity: 0.4;
				cursor: not-allowed;
			}
			/* Popup Card */
			.hide {
				display: none;
			}
			.floating-card {
				position: fixed;
        opacity: 0;
				top: 36%;
				left: 50%;
				transform: translate(-50%, -50%);
				transition: opacity 0.35s cubic-bezier, visibility 0s cubic-bezier 0.35s;

				min-width: 55%;
				max-width: 92%;
				min-height: 15vh;
				max-height: 68vh;
				overflow-y: auto;
				border-radius: 8px;
				
				background: #00a388;
				color: #ffffff;
				padding: 15px;
				z-index: 1000;
			}
      .floating-card.show {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease-in; 
      }
      .newsletter-close-btn {
        border: 1px solid white;
        color: rgb(255, 255, 255);
        background-color: rgba(255, 255, 255, 0.28);
        border-radius: 4px;
        position: fixed;
        right: 12px;
        top: 12px;
        padding: 6px;
        transition-duration: 0.3s; 
      }
      .newsletter-close-btn:hover {
        background-color: rgba(255, 255, 255, 0.8);
        color: rgba(0,0,0, 0.8);
        transition-duration: 0.3s; 
      }
      .email-signup {
        border: 1px solid #ffffff;
        color:white;
        margin-top: 8px;
        font-size: 18px;
        padding-left: 6px;
        border-radius: 4px;
        background: white;
        min-height:6.8vh;
        min-width: 42%;
        max-width: 96%;
        background-color: rgba(255, 255, 255, 0.28);
      }
      .confirm-signup-button {
        border: 1px solid white;
        color: rgb(0,0,0);
        background-color: rgba(255, 255, 255, 0.88);
        font-size: 20px;
        border-radius: 4px;
        min-height: 6vh;
        max-height: 8vh;
        min-width: 156px;
        left: 12px;
        bottom: 20px;
        margin-left: 4px;
        margin-top: 12;
        padding: 6px;
        transition-duration: 0.15s; 
      }
      .confirm-signup-button:hover {
        border-color: none;
        background-color: rgba(255, 255, 255, 0.48);
        transition-duration: 0.15s; 
      }
      .reopen-popup {
				position: fixed;
        opacity: 0;
				bottom: 6%;
				right: 6%;
				transition: opacity 0.35s cubic-bezier, visibility 0s cubic-bezier 0.35s;

				min-width: 8%;
				min-height: 5vh;
				max-height: 8vh;
				border-radius: 4px;
        border: 0px;
				
				background: #00a388;
				color: #ffffff;
				padding: 15px;
				z-index: 999;
			}
      .reopen-popup.show {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.2s ease-in; 
      }
			
			/* Hero Section */
			.hero {
				margin-top: 77px;
				padding: 6rem 3rem;
				background: #f8f9fa;
				text-align: center;
			}
			
			.hero-container {
				max-width: 900px;
				margin: 0 auto;
			}
			
			.status-badge {
				display: inline-block;
				/* PLACEHOLDER BADGE COLOR - Replace with brand color */
				background: #00a388;
				color: #ffffff;
				padding: 0.5rem 1.5rem;
				border-radius: 4px;
				font-size: 0.85rem;
				font-weight: 600;
				text-transform: uppercase;
				letter-spacing: 1px;
				margin-bottom: 2rem;
			}
			
			.hero h1 {
				font-size: 3.5rem;
				color: #1a1a1a;
				margin-bottom: 1.5rem;
				font-weight: 700;
				line-height: 1.2;
			}
			
			.hero-description {
				font-size: 1.3rem;
				color: #666666;
				margin-bottom: 3rem;
				max-width: 700px;
				margin-left: auto;
				margin-right: auto;
			}
			
			.notify-section {
				background: #ffffff;
				border: 2px solid #e0e0e0;
				border-radius: 6px;
				padding: 2.5rem;
				max-width: 600px;
				margin: 0 auto;
			}
			
			.notify-section h3 {
				font-size: 1.4rem;
				margin-bottom: 1rem;
				color: #eeeff0;
			}
			
			.notify-section p {
				color: #eeeff0;
				margin-bottom: 1.5rem;
				font-size: 1rem;
			}
			
			.email-form {
				display: flex;
				gap: 1rem;
			}
			
			.email-input {
				flex: 1;
				padding: 0.9rem 1.2rem;
				border: 1px solid #cccccc;
				border-radius: 4px;
				font-size: 1rem;
				color: #333333;
			}
			
			.email-input:focus {
				outline: none;
				border-color: #3498db;
			}
			
			.submit-btn {
				/* PLACEHOLDER BUTTON COLOR - Replace with brand color */
				background: #3498db;
				color: #ffffff;
				padding: 0.9rem 2rem;
				border: none;
				border-radius: 4px;
				font-size: 1rem;
				font-weight: 600;
				cursor: pointer;
				transition: background 0.3s ease;
				white-space: nowrap;
			}
			
			.submit-btn:hover {
				background: #2980b9;
			}
			
			/* Info Section */
			.info-section {
				padding: 5rem 3rem;
				background: #ffffff;
			}
			
			.info-container {
				max-width: 1400px;
				margin: 0 auto;
			}
			
			.section-title {
				text-align: center;
				font-size: 2.5rem;
				color: #1a1a1a;
				margin-bottom: 1rem;
				font-weight: 700;
			}
			
			.section-subtitle {
				text-align: center;
				font-size: 1.2rem;
				color: #666666;
				margin-bottom: 4rem;
				max-width: 700px;
				margin-left: auto;
				margin-right: auto;
			}
			
			.info-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
				gap: 3rem;
				margin-top: 3rem;
			}
			
			.info-card {
				text-align: center;
				padding: 2rem;
			}
			
			.info-icon {
				/* PLACEHOLDER ICON COLOR - Replace with brand color */
				width: 80px;
				height: 80px;
				background: #ecf0f1;
				color: #3498db;
				border-radius: 50%;
				display: flex;
				align-items: center;
				justify-content: center;
				margin: 0 auto 1.5rem;
				font-size: 2.5rem;
			}
			
			.info-card h3 {
				font-size: 1.4rem;
				color: #1a1a1a;
				margin-bottom: 1rem;
				font-weight: 600;
			}
			
			.info-card p {
				color: #666666;
				font-size: 1rem;
				line-height: 1.7;
			}
			
			/* Stats Section */
			.stats-section {
				padding: 4rem 3rem;
				background: #f8f9fa;
			}
			
			.stats-container {
				max-width: 1200px;
				margin: 0 auto;
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
				gap: 3rem;
				text-align: center;
			}
			
			.stat-item h2 {
				/* PLACEHOLDER STAT COLOR - Replace with brand color */
				color: #3498db;
				font-size: 3rem;
				font-weight: 700;
				margin-bottom: 0.5rem;
			}
			
			.stat-item p {
				color: #666666;
				font-size: 1.1rem;
			}
			
			.social-card {
				display: flex;
				justify-content: center;
				align-items: center
			}
			
			/* Footer */
			.footer {
				background: #2c3e50;
				color: #ffffff;
				padding: 4rem 3rem 2rem;
			}
			
			.footer-container {
				max-width: 1400px;
				margin: 0 auto;
			}
			
			.footer-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
				gap: 3rem;
				margin-bottom: 3rem;
			}
			
			.footer-section h4 {
				font-size: 1.2rem;
				margin-bottom: 1.5rem;
				font-weight: 600;
			}
			
			.footer-section p {
				color: #bdc3c7;
				line-height: 1.7;
				margin-bottom: 1.5rem;
			}
			
			.footer-links {
				list-style: none;
			}
			
			.footer-links li {
				margin-bottom: 0.8rem;
			}
			
			.footer-links a {
				color: #bdc3c7;
				text-decoration: none;
				font-size: 0.95rem;
				opacity: 0.5;
				cursor: not-allowed;
			}
			
			.social-links {
				display: flex;
				gap: 1rem;
				margin-top: 1.5rem;
			}
			
			.social-link {
				width: 40px;
				height: 40px;
				background: #34495e;
				color: #ffffff;
				border-radius: 4px;
				display: flex;
				align-items: center;
				justify-content: center;
				text-decoration: none;
				font-size: 1.1rem;
				transition: background 0.3s ease;
			}
			
			.social-link:hover {
				/* PLACEHOLDER SOCIAL HOVER COLOR - Replace with brand color */
				background: #3498db;
			}
			
			.footer-bottom {
				border-top: 1px solid #34495e;
				padding-top: 2rem;
				text-align: center;
				color: #bdc3c7;
				font-size: 0.9rem;
			}
			
			.footer-bottom-links {
				margin-top: 1rem;
				display: flex;
				justify-content: center;
				gap: 2rem;
				flex-wrap: wrap;
			}
			
			.footer-bottom-links a {
				color: #bdc3c7;
				text-decoration: none;
				font-size: 0.85rem;
				opacity: 0.5;
				cursor: not-allowed;
			}
			
			@media (max-width: 768px) {
				.nav-menu {
					display: none;
				}
				
				.hero h1 {
					font-size: 2.2rem;
				}
				
				.hero-description {
					font-size: 1.1rem;
				}
				
				.email-form {
					flex-direction: column;
				}
				
				.section-title {
					font-size: 2rem;
				}
				
				.stat-item h2 {
					font-size: 2.5rem;
				}
				
				.nav-container,
				.hero,
				.info-section,
				.stats-section,
				.footer {
					padding-left: 1.5rem;
					padding-right: 1.5rem;
				}
			}
	
