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

        body {
            font-family: 'Arial', sans-serif;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
            .header {
            background-color: white;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between; /* Separate logo, links, and profile icon */
            align-items: center;
            padding: 0 20px;
            gap: 0; /* Remove extra gap between main nav items */
        }

        .logo {
            font-weight: 900;
            font-size: 18px;
            color: #333;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 100px; /* Keep large gap between links */
            list-style: none;
            justify-content: center; /* Center links horizontally */
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 700; /* Increased for bolder text */
            font-size: 20px; /* Increased for larger text */
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #70C5CE;
        }

        .profile-icon {
            width: 30px;
            height: 30px;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        /* Main Content */
        .main-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Profile Header */
        .profile-header {
            background-color: rgba(112, 197, 206, 0.3);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            border: 1px solid rgba(112, 197, 206, 0.2);
        }

        .profile-name {
            font-size: 48px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .profile-role {
            font-size: 20px;
            color: #555;
        }

        /* Section Titles */
        .section-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 25px;
        }

        /* Available Events Section */
        .available-events {
            margin-bottom: 40px;
        }

        .event-item {
            background-color: rgba(112, 197, 206, 0.3);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
            border: 1px solid rgba(112, 197, 206, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .event-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        /* Toggle Switch */
        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.4s;
            border-radius: 30px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: #27ae60;
        }

        input:checked + .slider:before {
            transform: translateX(30px);
        }

        /* Resume Section */
        .resume-section {
            margin-bottom: 40px;
        }

        .resume-upload {
            background-color: rgba(158, 158, 158, 0.3);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(158, 158, 158, 0.3);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .resume-upload:hover {
            background-color: rgba(158, 158, 158, 0.4);
        }

        .resume-text {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .resume-input {
            display: none;
        }

        /* Organize Event Section */
        .organize-event {
            margin-bottom: 60px;
        }

        .event-card {
            background-color: rgba(112, 197, 206, 0.3);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(112, 197, 206, 0.2);
            position: relative;
            width: 320px;
            height: 320px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            box-sizing: border-box;
        }

        .event-card-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .event-card-date {
            color: #555;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .event-card-location {
            color: #555;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .event-card-description {
            color: #555;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .manage-btn {
            background-color: #FFB84D;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .manage-btn:hover {
            background-color: #e6a043;
            transform: translateY(-1px);
        }

        .add-event-btn {
            position: absolute;
            right: -130px;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(112, 197, 206, 0.5);
            border: 2px solid rgba(112, 197, 206, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            color: #555;
            transition: all 0.3s;
            z-index: 2;
        }

        /* Footer */
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 40px;
        }

        .footer-bottom {
            font-size: 12px;
            color: #888;
        }

        .footer-bottom .heart {
            color: #e74c3c;
            font-size: 14px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 600px;
        }

        .modal h3 {
            margin-bottom: 20px;
            color: #333;
            font-size: 24px;
        }

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

        .form-label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #333;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #70C5CE;
        }

        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }

        .modal-buttons {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
            margin-top: 25px;
        }

        .modal-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .modal-btn.create {
            background-color: #27ae60;
            color: white;
        }

        .modal-btn.cancel {
            background-color: #e74c3c;
            color: white;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            margin-top: -10px;
        }

        .close:hover {
            color: #333;
        }

        /* Success Message */
        .success-message {
            background-color: #27ae60;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
            display: none;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .main-content {
                padding: 30px 15px;
            }

            .profile-name {
                font-size: 36px;
            }

            .event-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .toggle-switch {
                align-self: flex-end;
            }

            .add-event-btn {
                position: static;
                transform: none;
                margin-top: 15px;
                align-self: center;
            }

            .modal-content {
                margin: 10% auto;
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .profile-header {
                padding: 20px;
            }

            .profile-name {
                font-size: 28px;
            }
        }