  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: #f4f7f6;
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .profile-card {
            background: #ffffff;
            width: 100%;
            max-width: 950px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Header Bölümü */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .logo {
            font-size: 22px;
            font-weight: 700;
            color: #00c853;
            text-decoration: none;
        }
        
        
        .clock-button {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .clock-icon {
            width: 16px;
            height: 16px;
            filter: invert(1);
        }

        .btn-primary {
            background-color: #00c853;
            color: white;
            border: none;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
        }
        
        
        .btn-primary:hover {
            background-color: #00b047;
        }

        .btn-outline {
            background-color: transparent;
            color: #00c853;
            border: 1px solid #00c853;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
        }

        .btn-outline:hover {
            background-color: #e8f5e9;
        }

        /* İçerik Alanı (Grid / Flex) */
        .content-body {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            margin-bottom: 40px;
        }

        .info-section {
            flex: 1;
        }

        .info-section h1 {
            font-size: 32px;
            font-weight: 700;
            color: #111;
            margin-bottom: 5px;
        }

        .info-section h3 {
            font-size: 16px;
            font-weight: 500;
            color: #555;
            margin-bottom: 20px;
        }

        .info-section p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 25px;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
        }

        .image-section {
            flex-shrink: 0;
        }

        .image-section img {
            width: 280px;
            height: 280px;
            object-fit: cover;
            border-radius: 24px;
        }

        /* Footer / İletişim Çubuğu */
        .footer-bar {
            background: #fafafa;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 15px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .social-icons {
            display: flex;
            gap: 20px;
        }

        .social-icons a {
            color: #333;
            font-size: 18px;
            transition: color 0.2s;
            text-decoration: none;
        }

        .social-icons a:hover {
            color: #00c853;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            font-size: 14px;
            color: #555;
            flex-wrap: wrap;
        }

        .contact-info div {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-info i {
            color: #333;
        }

        /* Responsive Uyumluluk (Mobil Ekranlar İçin) */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .profile-card {
                padding: 20px;
            }

            .content-body {
                flex-direction: column-reverse;
                text-align: center;
                gap: 25px;
            }

            .image-section img {
                width: 200px;
                height: 200px;
            }

            .action-buttons {
                justify-content: center;
                flex-direction: column;
            }

            .footer-bar {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
        }