header {
    text-align: center;         
    padding: 40px 20px;           
    background-color: #e6f2ff;   
    border-radius: 10px;         
    margin-bottom: 30px;        
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    color: green;
}
section {
    background-color: #fff;              
    max-width: 800px;                     
    margin: 20px auto;                    
    padding: 25px;                        
    border-radius: 10px;                  
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

section p, section ul {
    margin-bottom: 12px;
    color: purple;
}


ul {
    list-style-type: disc;    
    padding-left: 20px;      
}
.contactform {
    display: flex;
    flex-direction: column;  
    gap: 12px;               
    margin-top: 15px;
}

.contactform input,
.contactform textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;              
    transition: border-color 0.2s, box-shadow 0.2s;
}


.contactform input:focus,
.contactform textarea:focus {
    border-color: #007bff;                
    box-shadow: 0 0 5px rgba(0,123,255,0.3); 
    outline: none;
}                          
.contactform button {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: peru;
    color: yellow;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.contactform button:hover {
    background-color: #ff7f50; 
    transform: scale(1.03);    
}
.contactform button:active {
    transform: scale(0.97);   
}
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #e6f2ff;  
    border-radius: 10px;
    color: #555;
    font-size: 0.9rem;
}
section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
    animation-delay: 0.2s;

}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
h1{
color: orchid;
}
h2{
    color: blue;
}


