body { 
    color: rgb(#666677,0,0);
    font-size: 20px; 
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        html {
            scroll-behavior: smooth; /* Native CSS fallback for smooth scrolling */
        }

        /* Fixed Navigation Bar */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #333;
            padding: 15px 0;
            z-index: 1000;
            text-align: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 18px;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #ff9900;
        }

        /* Full Screen Sections */
        section {
            padding: 100px 20px 80px 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        /* Section Styling Backgrounds */
        #home { background-color: #f4f4f4; }
        #about { background-color: #e2e2e2; }
        #services { background-color: #d6d6d6; }
        #contact { background-color: #c9c9c9; }

        h1 {
            font-size: 40px;
            margin-bottom: 20px;
            color: #222;
        }

        p {
            font-size: 18px;
            max-width: 600px;
            line-height: 1.6;
            color: #555;
        }

        /* Contact Form Layout */
        form {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 400px;
            margin-top: 20px;
        }

        input, textarea {
            margin-bottom: 15px;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
        }

        button {
            padding: 12px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        button:hover {
            background-color: #ff9900;
        }