	* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}
		
		body {
			font-family: 'Segoe UI', 'Arial', sans-serif;
			background-color: #fff;
		}
		
		/* Header styles - exact match de la imagen */
		.header-top {
			background-color: #0b4e6b;
			padding: 12px 30px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			box-shadow: 0 2px 5px rgba(0,0,0,0.1);
		}
		
		.header-top .logo img {
			height: 45px;
			width: auto;
		}
		
		.header-top .title {
			color: white;
			font-size: 28px;
			font-weight: 600;
			letter-spacing: 1px;
			position: absolute;
			left: 50%;
			transform: translateX(-50%);
		}
		
		.header-top .btn-login {
			background-color: transparent;
			border: 2px solid white;
			color: white;
			padding: 8px 25px;
			border-radius: 6px;
			cursor: pointer;
			font-size: 16px;
			font-weight: 500;
			transition: all 0.3s;
		}
		
		.header-top .btn-login:hover {
			background-color: white;
			color: #0b4e6b;
		}
		
		/* Hero section - diseño exacto de la imagen */
		.hero-section {
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 50px 40px;
			max-width: 1300px;
			margin: 0 auto;
			gap: 40px;
		}
		
		.hero-left {
			flex: 0 0 40%;
		}
		
		.hero-left img {
			width: 100%;
			height: auto;
			max-width: 450px;
		}
		
		.hero-right {
			flex: 0 0 55%;
		}
		
		.hero-right h1 {
			font-size: 3.8rem;
			font-weight: 700;
			line-height: 1.1;
			margin-bottom: 20px;
			color: #000;
			font-family: 'Segoe UI', sans-serif;
		}
		
		.hero-right h1 .highlight {
			color: #0e9bc9;
			display: block;
		}
		
		.hero-subtitle {
			font-size: 1.2rem;
			color: #444;
			margin-bottom: 15px;
			font-weight: 600;
		}
		
		.hero-description {
			font-size: 1rem;
			color: #666;
			margin-bottom: 35px;
			font-weight: 400;
		}
		
		.btn-start {
			background-color: #0e9bc9;
			color: white;
			border: none;
			padding: 16px 45px;
			font-size: 1.2rem;
			font-weight: 600;
			border-radius: 8px;
			cursor: pointer;
			transition: all 0.3s;
			letter-spacing: 1px;
			margin-bottom: 40px;
			box-shadow: 0 4px 6px rgba(14,155,201,0.3);
		}
		
		.btn-start:hover {
			background-color: #0c7fa3;
			transform: translateY(-2px);
			box-shadow: 0 6px 12px rgba(14,155,201,0.4);
		}
		
		.btn-start i {
			margin-right: 8px;
		}
		
		/* Info boxes - estilo como en la imagen */
		.info-boxes {
			display: flex;
			gap: 25px;
			margin-top: 10px;
		}
		
		.info-box {
			flex: 1;
			border: 1.5px solid #e5e7eb;
			border-radius: 12px;
			padding: 25px 15px;
			text-align: center;
			background-color: white;
			transition: transform 0.3s;
		}
		
		.info-box:hover {
			transform: translateY(-5px);
			box-shadow: 0 10px 25px rgba(0,0,0,0.05);
			border-color: #0e9bc9;
		}
		
		.info-box-icon {
			font-size: 2.2rem;
			margin-bottom: 15px;
		}
		
		.info-box-title {
			font-weight: 700;
			font-size: 1.1rem;
			margin-bottom: 8px;
			color: #1f2937;
		}
		
		.info-box-description {
			font-size: 0.85rem;
			color: #6b7280;
			line-height: 1.5;
		}
		
		/* Colores de iconos */
		.text-warning { color: #f59e0b; }
		.text-info { color: #0e9bc9; }
		.text-danger { color: #ef4444; }
		
		/* Footer */
		footer {
			background-color: #0b4e6b !important;
			color: white;
			padding: 25px 0;
			margin-top: 30px;
		}
		
		footer p {
			font-size: 0.85rem;
			max-width: 900px;
			margin: 0 auto 15px;
			opacity: 0.9;
		}
		
		footer b {
			font-size: 0.9rem;
		}
		
		footer a {
			color: white !important;
			text-decoration: underline;
		}
		
		/* ===== ESTILOS MEJORADOS PARA MODALES ===== */
		.modal-content {
			border: none;
			border-radius: 15px;
			box-shadow: 0 20px 40px rgba(0,0,0,0.2);
			overflow: hidden;
		}
		
		.modal-header {
			background: linear-gradient(135deg, #0b4e6b 0%, #0e9bc9 100%);
			color: white;
			padding: 18px 25px;
			border-bottom: none;
			position: relative;
		}
		
		.modal-header .modal-title {
			font-size: 1.4rem;
			font-weight: 600;
			letter-spacing: 1px;
		}
		
		.modal-header .modal-title i {
			margin-right: 10px;
			font-size: 1.5rem;
		}
		
		.modal-header .close {
			color: white;
			opacity: 1;
			text-shadow: none;
			font-size: 2rem;
			font-weight: 300;
			transition: transform 0.3s;
		}
		
		.modal-header .close:hover {
			transform: rotate(90deg);
			opacity: 0.9;
		}
		
		.modal-body {
			padding: 30px;
			background: #f9fafc;
		}
		
		.modal-body label {
			font-weight: 600;
			color: #1f2937;
			font-size: 0.9rem;
			margin-bottom: 6px;
		}
		
		.modal-body label .text-danger {
			color: #ef4444;
			margin-left: 3px;
		}
		
		.modal-body .form-control {
			border: 1.5px solid #e5e7eb;
			border-radius: 10px;
			padding: 10px 15px;
			font-size: 0.95rem;
			transition: all 0.3s;
			background-color: white;
		}
		
		.modal-body .form-control:focus {
			border-color: #0e9bc9;
			box-shadow: 0 0 0 3px rgba(14,155,201,0.15);
			outline: none;
		}
		
		.modal-body .custom-select {
			cursor: pointer;
			appearance: none;
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
			background-repeat: no-repeat;
			background-position: right 15px center;
			background-size: 16px;
			padding-right: 45px;
		}
		
		.modal-footer {
			background-color: #f1f5f9;
			border-top: 1px solid #e2e8f0;
			padding: 18px 25px;
		}
		
		.btn-primary {
			background: linear-gradient(135deg, #0b4e6b, #0e9bc9);
			border: none;
			padding: 10px 25px;
			border-radius: 8px;
			font-weight: 600;
			font-size: 0.95rem;
			transition: all 0.3s;
		}
		
		.btn-primary:hover {
			background: linear-gradient(135deg, #0e9bc9, #0b4e6b);
			transform: translateY(-2px);
			box-shadow: 0 5px 15px rgba(14,155,201,0.4);
		}
		
		.btn-danger {
			background: linear-gradient(135deg, #dc3545, #c82333);
			border: none;
			padding: 10px 25px;
			border-radius: 8px;
			font-weight: 600;
			transition: all 0.3s;
		}
		
		.btn-danger:hover {
			background: linear-gradient(135deg, #c82333, #dc3545);
			transform: translateY(-2px);
			box-shadow: 0 5px 15px rgba(220,53,69,0.3);
		}
		
		.btn-link {
			color: #0e9bc9;
			font-weight: 600;
			font-size: 0.9rem;
			text-decoration: none;
			border-bottom: 2px solid transparent;
			padding: 5px 0;
			transition: all 0.3s;
		}
		
		.btn-link:hover {
			color: #0b4e6b;
			text-decoration: none;
			border-bottom-color: #0e9bc9;
		}
		
		/* Espaciado entre botones */
		.d-flex.gap-2 {
			gap: 15px !important;
		}
		
		/* Responsive */
		@media (max-width: 1024px) {
			.hero-section {
				flex-direction: column;
				padding: 40px 20px;
			}
			
			.hero-left, .hero-right {
				flex: 0 0 100%;
			}
			
			.hero-right h1 {
				font-size: 3rem;
			}
			
			.header-top .title {
				position: relative;
				left: 0;
				transform: none;
				font-size: 24px;
			}
		}
		
		@media (max-width: 768px) {
			.header-top {
				flex-direction: column;
				gap: 10px;
				text-align: center;
			}
			
			.header-top .title {
				margin: 10px 0;
				font-size: 22px;
			}
			
			.hero-right h1 {
				font-size: 2.5rem;
			}
			
			.hero-right h1 .highlight {
				display: inline;
			}
			
			.info-boxes {
				flex-direction: column;
			}
		}