        /* Base styles that match your existing website */
        :root {
            --primary-color: #212529;
            --secondary-color: #495057;
            --accent-color: #6c757d;
            --text-color: #333333;
            --light-bg: #f8f9fa;
            --dark-bg: #212529;
            --border-radius: 4px;
            --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            --success-color: #28a745;
            --danger-color: #dc3545;
            --warning-color: #ffc107;
        }

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

        body {
            font-family: "Times New Roman", Times, serif;
            font-style: italic;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }

        /* Header styles */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .logo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: #adb5bd;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

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

        .nav-links a {
            color: white;
            font-weight: 500;
            position: relative;
            text-decoration: none;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: white;
            transition: width 0.3s;
        }

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

        .nav-links a:hover:after {
            width: 100%;
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 15px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            z-index: 1;
        }

        .cyber-accent {
            position: relative;
        }

        .cyber-accent::before {
            content: "";
            position: absolute;
            height: 2px;
            width: 60px;
            background-color: var(--secondary-color);
            bottom: -12px;
            left: 0;
        }

        .cyber-accent::after {
            content: "";
            position: absolute;
            height: 2px;
            width: 30px;
            background-color: #adb5bd;
            bottom: -12px;
            left: 70px;
        }

        /* Main content styles */
        .main-content {
            padding: 60px 0;
        }

        .sandbox-description {
            max-width: 800px;
            margin-bottom: 40px;
        }

        /* Cloud Security Sandbox Interface */
        .cloud-sandbox {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 40px;
        }

        .sandbox-tabs {
            display: flex;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
        }

        .sandbox-tab {
            padding: 15px 20px;
            cursor: pointer;
            background-color: transparent;
            border: none;
            font-family: inherit;
            font-size: 16px;
            font-style: italic;
            color: var(--text-color);
            transition: all 0.3s;
            flex: 1;
            text-align: center;
        }

        .sandbox-tab.active {
            background-color: var(--secondary-color);
            color: white;
        }

        .sandbox-tab:hover:not(.active) {
            background-color: var(--light-bg);
        }

        .sandbox-content {
            display: none;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
        }

        .sandbox-content.active {
            display: block;
        }

        /* IAM Configuration */
        .iam-section {
            margin-bottom: 30px;
        }

        .iam-section h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
            font-size: 22px;
        }

        .iam-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #dee2e6;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 16px;
        }

        select.form-control {
            cursor: pointer;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-family: inherit;
            font-size: 16px;
            font-style: italic;
            transition: all 0.3s;
        }

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

        /* Security Groups */
        .security-group {
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 20px;
            border-left: 3px solid var(--secondary-color);
        }

        .security-group-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .security-group-header h4 {
            margin: 0;
            font-size: 18px;
        }

        .rule-list {
            list-style: none;
        }

        .rule-item {
            padding: 10px;
            border-bottom: 1px solid #dee2e6;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .rule-item:last-child {
            border-bottom: none;
        }

        .rule-desc {
            font-size: 15px;
        }

        /* Security Alerts */
        .alert-list {
            list-style: none;
        }

        .alert-item {
            padding: 15px;
            margin-bottom: 15px;
            border-radius: var(--border-radius);
            border-left: 4px solid;
            box-shadow: var(--box-shadow);
            display: flex;
            align-items: flex-start;
        }

        .alert-item.high {
            border-left-color: var(--danger-color);
            background-color: rgba(220, 53, 69, 0.05);
        }

        .alert-item.medium {
            border-left-color: var(--warning-color);
            background-color: rgba(255, 193, 7, 0.05);
        }

        .alert-item.low {
            border-left-color: var(--success-color);
            background-color: rgba(40, 167, 69, 0.05);
        }

        .alert-icon {
            margin-right: 15px;
            font-size: 20px;
        }

        .alert-item.high .alert-icon {
            color: var(--danger-color);
        }

        .alert-item.medium .alert-icon {
            color: var(--warning-color);
        }

        .alert-item.low .alert-icon {
            color: var(--success-color);
        }

        .alert-content {
            flex: 1;
        }

        .alert-title {
            margin: 0 0 8px 0;
            font-size: 18px;
        }

        .alert-description {
            margin: 0 0 10px 0;
            font-size: 15px;
        }

        .alert-meta {
            display: flex;
            gap: 15px;
            font-size: 14px;
            color: var(--accent-color);
        }

        /* Scenario panel */
        .scenario-panel {
            background-color: #212529;
            color: white;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }

        .scenario-title {
            margin-bottom: 15px;
            font-size: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 10px;
        }

        .scenario-description {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .scenario-objectives {
            margin-bottom: 20px;
        }

        .scenario-objectives h4 {
            margin-bottom: 10px;
            font-size: 18px;
        }

        .objective-list {
            list-style: none;
        }

        .objective-item {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }

        .objective-item:before {
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        /* Interactive Dashboard */
        .dashboard-panels {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .dashboard-panel {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 20px;
        }

        .panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #dee2e6;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        .panel-title {
            margin: 0;
            font-size: 18px;
            color: var(--primary-color);
        }

        .panel-icon {
            background-color: var(--light-bg);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
        }

        /* Progress track */
        .progress-track {
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-top: 30px;
        }

        .progress-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

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

        .progress-fill {
            height: 100%;
            background-color: var(--secondary-color);
            width: 0%;
            transition: width 0.5s;
        }

        .progress-stats {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: var(--accent-color);
        }

        /* Resources section */
        .resources-section {
            margin-top: 60px;
        }

        .resources-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

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

        .resource-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: transform 0.3s;
        }

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

        .resource-content {
            padding: 20px;
        }

        .resource-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .resource-description {
            font-size: 15px;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .resource-link {
            display: inline-block;
            color: var(--secondary-color);
            text-decoration: none;
        }

        .resource-link:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

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

        .footer-about p {
            margin-bottom: 20px;
            opacity: 0.8;
            line-height: 1.7;
        }

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

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

        .social-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

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

        .quick-links {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .quick-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: color 0.3s;
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .quick-links a:hover {
            color: var(--accent-color);
        }

        .quick-links a i {
            margin-right: 10px;
            font-size: 14px;
        }

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

        /* Responsive styles */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .iam-form {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .sandbox-tabs {
                flex-direction: column;
            }

            .dashboard-panels {
                grid-template-columns: 1fr;
            }
        }