﻿/* Global Reset and Basic Styles */


/* Container Styling */
.container1 {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* Header Styling */
.container1 h1, .container1 h2, .container1 h3 {
    margin: 0;
    padding-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Intro Paragraph Styling */
.intro1 {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Section Paragraph Styling */
.section1 {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    position: relative;
}

.section1 strong {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
    padding-bottom: 3px;
    border-bottom: 2px solid #3498db;
}

/* Phase and Summary Blocks */
.phases1, .summary1 {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3498db;
    animation: fadeIn 1s ease-in-out;
}

/* Conclusion Styling */
.conclusion1 {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
    padding: 15px;
    border-radius: 8px;
    background: #e9f5f5;
    border-left: 5px solid #1abc9c;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container1 {
        padding: 20px;
    }
    
    .intro1, .section1, .phases1, .summary1, .conclusion1 {
        font-size: 13px;
    }
}